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:
@@ -7,9 +7,15 @@ export default defineConfig({
|
||||
retries: process.env.CI ? 2 : 0,
|
||||
workers: process.env.CI ? 1 : undefined,
|
||||
reporter: 'list',
|
||||
timeout: 60000, // 60 seconds per test
|
||||
expect: {
|
||||
timeout: 10000, // 10 seconds for assertions
|
||||
},
|
||||
use: {
|
||||
baseURL: 'http://127.0.0.1:5173',
|
||||
trace: 'on-first-retry',
|
||||
actionTimeout: 15000, // 15 seconds for actions
|
||||
navigationTimeout: 30000, // 30 seconds for navigation
|
||||
},
|
||||
projects: [
|
||||
{
|
||||
|
||||
4
test-results/.last-run.json
Normal file
4
test-results/.last-run.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"status": "failed",
|
||||
"failedTests": []
|
||||
}
|
||||
Reference in New Issue
Block a user