fix(e2e): Increase Playwright timeouts for slower Firefox tests

- Add 60s test timeout, 10s expect timeout
- Add 15s action timeout, 30s navigation timeout
- Fixes Firefox auth tests timing out at 30s
This commit is contained in:
2026-02-18 22:26:28 -05:00
parent 0efc487c1a
commit 06ae6e261f
2 changed files with 10 additions and 0 deletions

View File

@@ -7,9 +7,15 @@ export default defineConfig({
retries: process.env.CI ? 2 : 0, retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined, workers: process.env.CI ? 1 : undefined,
reporter: 'list', reporter: 'list',
timeout: 60000, // 60 seconds per test
expect: {
timeout: 10000, // 10 seconds for assertions
},
use: { use: {
baseURL: 'http://127.0.0.1:5173', baseURL: 'http://127.0.0.1:5173',
trace: 'on-first-retry', trace: 'on-first-retry',
actionTimeout: 15000, // 15 seconds for actions
navigationTimeout: 30000, // 30 seconds for navigation
}, },
projects: [ projects: [
{ {

View File

@@ -0,0 +1,4 @@
{
"status": "failed",
"failedTests": []
}