Skip to content

Commit

Permalink
fix reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Jaffee committed Sep 28, 2023
1 parent 4cb17a7 commit 8876885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: process.env.CI ? 'dot' : 'list',
reporter: process.env.CI ? 'dot' : [['html', { open: 'never' }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
Expand Down

0 comments on commit 8876885

Please sign in to comment.