Skip to content

Commit

Permalink
Also export a json report for the e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
Xon committed Aug 21, 2024
1 parent 125956f commit cc88c50
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 @@ -24,7 +24,7 @@ const config: PlaywrightTestConfig = {
/* 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'], ['json']] : 'list',
timeout: 2000,
expect : {
timeout: 500,
Expand Down

0 comments on commit cc88c50

Please sign in to comment.