console logi

This commit is contained in:
wrzesinski-hubert
2021-01-14 15:32:50 +01:00
parent 0d433c12ad
commit b7424826ad
4 changed files with 1 additions and 23 deletions
+1 -11
View File
@@ -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);
});