diff --git a/webapp/src/components/Login.test.js b/webapp/src/components/Login.test.js index 7634fcc2..52d7196f 100644 --- a/webapp/src/components/Login.test.js +++ b/webapp/src/components/Login.test.js @@ -67,7 +67,7 @@ describe('Login component', () => { // Verify that the user information is not displayed //expect(screen.queryByText(/Hello testUser!/i)).toBeNull(); //expect(screen.queryByText(/Your account was created on/i)).toBeNull(); - expect(sendLogin.mock.calls[0]).toBe(undefined); + expect(sendLogin.mock.calls[0][0]).toBe(false); expect(sendUsername.mock.calls[0]).toBe(undefined); }); });