perf: parallelize tests and reduce timeouts
Pull Request / unit-tests (pull_request) Successful in 2m3s
Pull Request / analyze-bump-type (pull_request) Successful in 13s
Pull Request / build-and-deploy-ci (pull_request) Failing after 16m0s

- Increase workers from 1 to 10 in CI for parallel execution
- Reduce expect timeout from 5000ms to 2000ms
- Reduce all waitForTimeout calls >1000ms to 200-500ms
- Remove unnecessary waits in global setup
This commit is contained in:
2026-05-19 00:39:46 -07:00
parent 005cf7293d
commit 38771a86cb
8 changed files with 22 additions and 26 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ test.describe.serial('Epic 1: User Logout', () => {
await page.waitForLoadState('domcontentloaded');
// Wait a moment for the navigation component to update
await page.waitForTimeout(1000);
await page.waitForTimeout(200);
// Debug: Check what's on the page
const pageContent = await page.content();