Skip to content

Commit 9d44cc5

Browse files
committed
Fix e2e test timeout from latency
1 parent 5c1a978 commit 9d44cc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SIL.XForge.Scripture/ClientApp/e2e/workflows/smoke-tests.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export async function traverseHomePageAndLoginPage(page: Page, context: Screensh
7272

7373
// Log in with Paratext
7474
await page.locator("a").filter({ hasText: "Log in with Paratext" }).click();
75-
await expect(page.getByText("Sign in with your Paratext Registry account")).toBeVisible();
75+
await expect(page.getByText("Sign in with your Paratext Registry account")).toBeVisible({ timeout: 10_000 });
7676
await page.fill("input[name=email]", "[email protected]");
7777
await page.click("#login-form button[type=submit]");
7878
await screenshot(page, { pageName: "registry_login_page", ...context });

0 commit comments

Comments
 (0)