From 92c1aa20a71c5b0464df418f34836bf6f761e3ad Mon Sep 17 00:00:00 2001 From: Anish Karandikar Date: Mon, 4 Oct 2021 05:50:55 -0700 Subject: [PATCH] docs(reporters): clarify dot reporter is default on CI (#9074) --- docs/src/test-reporters-js.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/test-reporters-js.md b/docs/src/test-reporters-js.md index db8464e2bf..5f1d1a8808 100644 --- a/docs/src/test-reporters-js.md +++ b/docs/src/test-reporters-js.md @@ -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