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 dbda18b commit 77e519cCopy full SHA for 77e519c
playwright.config.ts
@@ -17,6 +17,10 @@ const config: PlaywrightTestConfig = {
17
},
18
workers: '100%',
19
retries: 1,
20
+ // 'github' for GitHub Actions CI to generate annotations, plus a concise 'dot'
21
+ // default 'list' when running locally
22
+ // See https://playwright.dev/docs/test-reporters#github-actions-annotations
23
+ reporter: process.env.CI ? 'github' : 'list',
24
};
25
26
if (process.env.CI) {
0 commit comments