Merge pull request 'console logi' (#56) from idk into master
Reviewed-on: http://git.plannaplan.pl/y0rune/frontend/pulls/56 Reviewed-by: Maciej <glowackimaciej97@gmail.com>
This commit is contained in:
commit
6db69f95fb
@ -98,11 +98,6 @@ export const Administrator = () => {
|
||||
const [endSecondDate, setEndSecondDate] = useState<Date | null>(null);
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
if (startFirstDate !== null) {
|
||||
console.log(format(startFirstDate, 'dd.MM.yyyy'));
|
||||
}
|
||||
}, [startFirstDate]);
|
||||
|
||||
const uploadFile = async (event: React.FormEvent<HTMLFormElement>) => {
|
||||
const action = (key: any) => (
|
||||
@ -147,7 +142,6 @@ export const Administrator = () => {
|
||||
variant: 'success',
|
||||
action,
|
||||
});
|
||||
console.log(response);
|
||||
} catch (e) {
|
||||
enqueueSnackbar('Zapisywanie planu nie powiodło się', {
|
||||
variant: 'error',
|
||||
|
@ -70,7 +70,6 @@ export const SchedulerHistoryNavigation = ({
|
||||
<StyledButton
|
||||
direction="left"
|
||||
onClick={() => {
|
||||
console.log('left clicked');
|
||||
SubstractCurrentTimetable(-1);
|
||||
}}
|
||||
>
|
||||
@ -80,7 +79,6 @@ export const SchedulerHistoryNavigation = ({
|
||||
<StyledButton
|
||||
direction="right"
|
||||
onClick={() => {
|
||||
console.log('right clicked');
|
||||
AddCurrentTimetable(1);
|
||||
}}
|
||||
>
|
||||
|
@ -22,20 +22,10 @@ test('input should display default placeholder for student', async () => {
|
||||
const { getByPlaceholderText, getByText, debug } = customRender(<Topbar handleTransfer={() => {}} />);
|
||||
setTimeout(()=>{const input = getByPlaceholderText('Wyszukaj przedmioty...');
|
||||
expect(input).toBeInTheDocument();},2000);
|
||||
// fireEvent.change(input, { target: { value: '122' } });
|
||||
// console.log(debug());
|
||||
// const textNode = await waitForElement(() => getByText('asdasdsa'));
|
||||
// console.log(debug());
|
||||
|
||||
});
|
||||
|
||||
test('input should display changed value', async () => {
|
||||
const { getByPlaceholderText, getByText, debug } = customRender(<Topbar handleTransfer={() => {}} />);
|
||||
setTimeout(()=>{ const input = getByPlaceholderText('Wyszukaj przedmioty...');
|
||||
fireEvent.change(input, { target: { value: '122' } });expect(input.value).toBe("122");},2000);
|
||||
|
||||
|
||||
// console.log(debug());
|
||||
// console.log(debug());
|
||||
|
||||
fireEvent.change(input, { target: { value: '122' } });expect(input.value).toBe("122");},2000);
|
||||
});
|
||||
|
@ -220,7 +220,6 @@ export const CoursesProvider = ({ children }: CoursesProviderProps) => {
|
||||
const { data } = await axiosInstance.get<Array<TimetableHistory> | []>(
|
||||
`${process.env.REACT_APP_API_URL}/api/v1/commisions/user/${studentId}?groups=true`,
|
||||
);
|
||||
console.log('data is mordo: ', data);
|
||||
setTimetableHistory(data);
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
@ -264,7 +263,6 @@ export const CoursesProvider = ({ children }: CoursesProviderProps) => {
|
||||
}
|
||||
}
|
||||
}
|
||||
console.log('baskeeeeeet: ', basket);
|
||||
setHistoryBasket(basket);
|
||||
};
|
||||
|
||||
@ -277,8 +275,6 @@ export const CoursesProvider = ({ children }: CoursesProviderProps) => {
|
||||
}, 600);
|
||||
}, []);
|
||||
|
||||
console.log("123,",userID,courses,basket)
|
||||
|
||||
return (
|
||||
<coursesContext.Provider
|
||||
value={{
|
||||
|
Loading…
Reference in New Issue
Block a user