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
@@ -175,7 +175,7 @@ test.describe.serial('Issue #7: Schedule Tab', () => {
await page.click('button:has-text("Generate Schedule")');
// Wait for success message or page reload
await page.waitForTimeout(3000);
await page.waitForTimeout(500);
// Verify rounds were created in database
const rounds = await prisma.tournamentRound.findMany({