Commit febec5e
committed
Fix E2E test timeout: align Playwright port with Vite preview
Problem:
- CI E2E tests timing out after 120s waiting for web server
- Playwright config expected port 4173 (Vite default)
- vite.config.ts configured preview server on port 3000
- Playwright waited for wrong port, never found server
Solution:
- Changed playwright.config.ts baseURL from localhost:4173 to localhost:3000
- Now matches vite.config.ts preview.port setting
Result:
- E2E tests can now start successfully
- Preview server found immediately on correct port
- No more 120s timeout failures in CI1 parent 5824c0e commit febec5e
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
0 commit comments