Skip to content

Commit fdf3e4e

Browse files
committed
Using smaller timeouts on e2e tests
1 parent 76b9a27 commit fdf3e4e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/test-e2e.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88

99
jobs:
1010
test:
11-
timeout-minutes: 5
1211
runs-on: ubuntu-latest
1312
steps:
1413
- uses: actions/checkout@v4

playwright.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ export default defineConfig({
44
testDir: './e2e',
55
fullyParallel: true,
66
forbidOnly: !!process.env.CI,
7-
retries: process.env.CI ? 2 : 0,
7+
timeout: 5_000,
8+
expect: {
9+
timeout: 1_000
10+
},
811
workers: process.env.CI ? 1 : undefined,
912
reporter: 'list',
1013
use: {

0 commit comments

Comments
 (0)