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 2871d73 commit a6dd737Copy full SHA for a6dd737
packages/frontend/test/e2e/util/integration_flows.ts
@@ -3,7 +3,7 @@ import { getIntegrationAdmin } from "./admin";
3
4
export const integrationLogin = async (page: Page, baseURL: string|undefined) => {
5
await page.goto(baseURL + '/login/local/');
6
- await expect(page).toHaveTitle("Login | SysReptor");
+ await expect(page).toHaveTitle("Login | SysReptor", { timeout: 60000 });
7
await page.getByLabel('Username').fill(getIntegrationAdmin().username);
8
await page.getByLabel('Password').fill(getIntegrationAdmin().password);
9
await page.getByTestId('login-submit').click();
0 commit comments