We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8013f78 commit 7528ee2Copy full SHA for 7528ee2
playwright.config.ts
@@ -15,7 +15,7 @@ export default defineConfig({
15
workers: process.env.CI ? 3 : undefined,
16
globalSetup: './tests/test-setup-e2e.ts',
17
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
18
- reporter: process.env.CI ? 'blob' : 'list',
+ reporter: process.env.CI ? [['blob'], ['list']] : [['list']],
19
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
20
use: {
21
/* Base URL to use in actions like `await page.goto('/')`. */
0 commit comments