Summary
E2E tests run with workers: 1 and fullyParallel: false in playwright.config.ts. With 14 projects on independent ports (dev: 8000-8600, prod: 9000-9600), cross-project parallelism should be safe.
Current behavior
120 tests run serially in ~3.2 minutes.
Proposed solution
Set workers: 2 or higher and fullyParallel: true in playwright.config.ts. Each project already has its own server port, so there should be no resource contention.
Context
Found during comprehensive review (finding #34).
Summary
E2E tests run with
workers: 1andfullyParallel: falsein playwright.config.ts. With 14 projects on independent ports (dev: 8000-8600, prod: 9000-9600), cross-project parallelism should be safe.Current behavior
120 tests run serially in ~3.2 minutes.
Proposed solution
Set
workers: 2or higher andfullyParallel: truein playwright.config.ts. Each project already has its own server port, so there should be no resource contention.Context
Found during comprehensive review (finding #34).