We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8372f71 commit 1c92bbcCopy full SHA for 1c92bbc
playwright.config.ts
@@ -2,5 +2,10 @@ import { defineConfig } from '@playwright/test';
2
3
export default defineConfig({
4
outputDir: 'tests/results',
5
- retries: 3,
+ retries: process.env.E2E ? 2 : 0,
6
+ workers: process.env.E2E ? 1 : undefined,
7
+ timeout: 60000,
8
+ expect: {
9
+ timeout: 10000,
10
+ },
11
});
0 commit comments