Skip to content

Commit 733db23

Browse files
committed
Bump e2e test timeout by five more seconds
On prod, it often succeedes, but sometimes literally fails at 100% progress. So five extra seconds should do it, hopefully 🤞
1 parent 94ff27a commit 733db23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

functional-tests/tests/onboarding.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ test.describe(`Verify authentication [${process.env.E2E_TEST_ENV}]`, () => {
6060

6161
const progressBarRuntime = 60 * 1000;
6262
test.setTimeout(progressBarRuntime + 30 * 1000);
63-
// A scan takes 60 seconds, plus 20 seconds for the navigation back to the dashboard:
63+
// A scan takes 60 seconds, plus 25 seconds for the navigation back to the dashboard:
6464
await page.waitForURL("**/user/dashboard*", {
65-
timeout: progressBarRuntime + 20 * 1000,
65+
timeout: progressBarRuntime + 25 * 1000,
6666
});
6767
await expect(
6868
page.getByRole("heading", {

0 commit comments

Comments
 (0)