Skip to content

Commit

Permalink
docs(examples): fix Playwright default reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Feb 1, 2024
1 parent ae42c06 commit b42764d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/playwright/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import type { PlaywrightTestConfig } from "@playwright/test";
* See https://playwright.dev/docs/test-configuration.
*/
const config: PlaywrightTestConfig = {
// Add Argos reporter.
reporter: [
["list"],
// Use "dot" reporter on CI, "list" otherwise (Playwright default).
process.env.CI ? ["dot"] : ["list"],
// Add Argos reporter.
[
"@argos-ci/playwright/reporter",
{
Expand Down

0 comments on commit b42764d

Please sign in to comment.