We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 726b1f4 commit 6c4cebbCopy full SHA for 6c4cebb
1 file changed
playwright.config.ts
@@ -3,6 +3,7 @@ import {PlaywrightTestConfig} from '@playwright/test';
3
const config: PlaywrightTestConfig = {
4
testDir: './e2e/',
5
outputDir: __dirname + '/logs/tests/e2e/',
6
+ retries: 2,
7
use: {
8
baseURL: process.env.E2E_BASE_URL ?? 'https://artisans.lan:4207/',
9
headless: true,
@@ -16,6 +17,7 @@ const config: PlaywrightTestConfig = {
16
17
height: 720,
18
},
19
20
+ trace: 'on-all-retries',
21
22
};
23
0 commit comments