Skip to content

Commit a6dd737

Browse files
committed
Add integration test timeout
1 parent 2871d73 commit a6dd737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/frontend/test/e2e/util/integration_flows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { getIntegrationAdmin } from "./admin";
33

44
export const integrationLogin = async (page: Page, baseURL: string|undefined) => {
55
await page.goto(baseURL + '/login/local/');
6-
await expect(page).toHaveTitle("Login | SysReptor");
6+
await expect(page).toHaveTitle("Login | SysReptor", { timeout: 60000 });
77
await page.getByLabel('Username').fill(getIntegrationAdmin().username);
88
await page.getByLabel('Password').fill(getIntegrationAdmin().password);
99
await page.getByTestId('login-submit').click();

0 commit comments

Comments
 (0)