Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/src/test-reporters-js.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default config;

### Reporters on CI

You can use different reporters locally and on CI. For example, using concise `'dot'` reporter avoids too much output.
You can use different reporters locally and on CI. For example, using concise `'dot'` reporter avoids too much output. This is the default on CI.

```js js-flavor=js
// playwright.config.js
Expand Down Expand Up @@ -104,7 +104,7 @@ All built-in reporters show detailed information about failures, and mostly diff

### List reporter

List reporter is default. It prints a line for each test being run.
List reporter is default (except on CI where the `dot` reporter is default). It prints a line for each test being run.

```bash
npx playwright test --reporter=list
Expand Down Expand Up @@ -195,7 +195,7 @@ Running 124 tests using 6 workers

### Dot reporter

Dot reporter is very concise - it only produces a single character per successful test run. It is useful on CI where you don't want a lot of output.
Dot reporter is very concise - it only produces a single character per successful test run. It is the default on CI and useful where you don't want a lot of output.

```bash
npx playwright test --reporter=dot
Expand Down