Skip to content

Commit

Permalink
Using html reporter in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Oct 21, 2023
1 parent 1d15dbb commit c91bb66
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 @@ -7,7 +7,7 @@ export default defineConfig({
retries: process.env.CI !== undefined ? 2 : 0,
// Opt out of parallel tests on CI.
//workers: process.env.CI !== undefined ? 1 : undefined,
reporter: process.env.CI !== undefined ? "github" : "list",
reporter: process.env.CI !== undefined ? "html" : "list",
use: {
baseURL: "http://127.0.0.1:8080",
trace: "on-first-retry",
Expand Down

0 comments on commit c91bb66

Please sign in to comment.