docs(reporters): clarify dot reporter is default on CI (#9074)

This commit is contained in:
Anish Karandikar 2021-10-04 05:50:55 -07:00 committed by GitHub
parent ff02184acf
commit 92c1aa20a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
@ -132,7 +132,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
@ -223,7 +223,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