We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74370fe commit 8652c96Copy full SHA for 8652c96
playwright.config.ts
@@ -2,8 +2,16 @@ import { defineConfig } from '@playwright/test';
2
3
export default defineConfig({
4
webServer: {
5
- command: 'npm run build && npm run preview',
+ command: 'pnpm build && pnpm preview',
6
port: 4173,
7
},
8
testDir: 'e2e',
9
+ timeout: 60 * 1000,
10
+ expect: {
11
+ timeout: 10 * 1000,
12
+ },
13
+ retries: 2,
14
+ use: {
15
+ trace: 'on-first-retry',
16
17
});
0 commit comments