Skip to content

Commit 1c92bbc

Browse files
committed
change playwright config
1 parent 8372f71 commit 1c92bbc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

playwright.config.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@ import { defineConfig } from '@playwright/test';
22

33
export default defineConfig({
44
outputDir: 'tests/results',
5-
retries: 3,
5+
retries: process.env.E2E ? 2 : 0,
6+
workers: process.env.E2E ? 1 : undefined,
7+
timeout: 60000,
8+
expect: {
9+
timeout: 10000,
10+
},
611
});

0 commit comments

Comments
 (0)