Skip to content

Commit

Permalink
ci: use github reporter on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc committed Aug 5, 2024
1 parent 134b9b0 commit 2d1ebef
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 @@ -15,7 +15,7 @@ export default defineConfig<AuthUsersOptions>({
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: 1,
reporter: 'html',
reporter: process.env.CI ? [['dot'], ['github']] : 'html',
reportSlowTests: {
max: 5,
threshold: minutesToMilliseconds(2),
Expand Down

0 comments on commit 2d1ebef

Please sign in to comment.