From 0d5e4587fc267b49f1bf397f84bed3e787e7b12e Mon Sep 17 00:00:00 2001 From: Florian Zia Date: Mon, 9 Dec 2024 16:42:34 +0100 Subject: [PATCH] chore: Increase E2E auth timeout --- src/e2e/pages/landingPage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/e2e/pages/landingPage.ts b/src/e2e/pages/landingPage.ts index eab1e01be9c..7d5c61a7a99 100644 --- a/src/e2e/pages/landingPage.ts +++ b/src/e2e/pages/landingPage.ts @@ -264,7 +264,7 @@ export class LandingPage { async goToSignIn() { await this.signInButton.click(); // FxA can take a while to load on stage: - await this.page.waitForURL("**/oauth/**", { timeout: 60_000 }); + await this.page.waitForURL("**/oauth/**", { timeout: 120_000 }); } async enterFreeScanEmail(email: string) {