Skip to content

Commit

Permalink
html report
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomachadors committed Jan 5, 2025
1 parent bfcb3c7 commit c7bc4e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ export default defineConfig({
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,

reporter: [['line'], ['github']],
reporter: [
['line'],
['github'],
['html', { outputFolder: 'playwright-report', open: 'always' }],
],
expect: {
timeout: 10_000,
},
Expand Down

0 comments on commit c7bc4e4

Please sign in to comment.