Skip to content
4 changes: 2 additions & 2 deletions app/src/app/(auth)/login/__tests__/page.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ describe("LoginPage", () => {
mockFetchBootstrapStatus(true);
mockSignIn.mockResolvedValue({ error: "CredentialsSignin" });

const user = userEvent.setup();
const user = userEvent.setup({ delay: null });
render(<LoginPage />);

const emailInput = screen.getByLabelText("Email");
Expand All @@ -210,7 +210,7 @@ describe("LoginPage", () => {
mockFetchBootstrapStatus(true);
mockSignIn.mockResolvedValue({ error: null });

const user = userEvent.setup();
const user = userEvent.setup({ delay: null });
render(<LoginPage />);

const emailInput = screen.getByLabelText("Email");
Expand Down
Loading
Loading