Skip to content

Commit 7528ee2

Browse files
authored
chore(test): add some human readable reporting to playwright runs in CI to help with debugging setup issues (#437)
1 parent 8013f78 commit 7528ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default defineConfig({
1515
workers: process.env.CI ? 3 : undefined,
1616
globalSetup: './tests/test-setup-e2e.ts',
1717
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
18-
reporter: process.env.CI ? 'blob' : 'list',
18+
reporter: process.env.CI ? [['blob'], ['list']] : [['list']],
1919
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2020
use: {
2121
/* Base URL to use in actions like `await page.goto('/')`. */

0 commit comments

Comments
 (0)