Skip to content

Commit 4e8305d

Browse files
authored
Merge pull request alan2207#33 from phongluudn1997/fix/remove-redundant-await-keyword
remove redundant await keyword
2 parents 0ac22fc + f2cdba3 commit 4e8305d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/auth/components/__tests__/LoginForm.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createUser, render, screen, userEvent, waitFor } from '@/test/test-util
33
import { LoginForm } from '../LoginForm';
44

55
test('should login new user and call onSuccess cb which should navigate the user to the app', async () => {
6-
const newUser = await await createUser({ teamId: undefined });
6+
const newUser = await createUser({ teamId: undefined });
77

88
const onSuccess = jest.fn();
99

0 commit comments

Comments
 (0)