Skip to content

Commit e5caff5

Browse files
committed
fix(web): increase smoke test timeout to 45s to match app-ready timeout
- Update expectPageLoads timeout from 30s to 45s to match DEFAULT_TIMEOUT - Tests were failing at 32-33s but timeout was 30s, causing false failures - This aligns all E2E timeout values for consistency
1 parent ce8070b commit e5caff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/test/e2e/page-smoke.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const expectPageLoads = async (page: import("@playwright/test").Page, path: stri
7373
errors.push(error.message);
7474
});
7575

76-
const timeout = options?.timeout ?? 30_000;
76+
const timeout = options?.timeout ?? 45_000;
7777
const url = buildUrl(path);
7878
await page.goto(url, { waitUntil: 'domcontentloaded', timeout });
7979
await waitForAppReady(page, { timeout });

0 commit comments

Comments
 (0)