Skip to content

Commit

Permalink
Update packages/quantic/playwright.config.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Frederic Beaudoin <[email protected]>
  • Loading branch information
mmitiche and fbeaudoincoveo authored Oct 31, 2024
1 parent 56518c5 commit 638fdd7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/quantic/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ 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: 'html',
reporter: process.env.CI
? [['html'], ['list'], ['github'], ['blob']]
: [['html'], ['list']],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
Expand Down

0 comments on commit 638fdd7

Please sign in to comment.