We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d31bf7 commit 303738eCopy full SHA for 303738e
src/screens/login/login-form.test.tsx
@@ -12,7 +12,7 @@ const onSubmitMock: jest.Mock<LoginFormProps['onSubmit']> = jest.fn();
12
describe('LoginForm Form ', () => {
13
it('renders correctly', async () => {
14
const { findByText } = render(<LoginForm />);
15
- expect(await findByText(/Sign in/i)).toBeNull();
+ expect(await findByText(/Sign in/i)).not.toBeNull();
16
});
17
18
it('should display required error when values are empty', async () => {
0 commit comments