From 6a3829fc8ea5146f2c8bc4acbdad1e5c0efa96b5 Mon Sep 17 00:00:00 2001 From: Harsh Sharma Date: Sat, 12 Sep 2026 04:49:36 +0000 Subject: [PATCH] docs(cli): clarify reporter defaults on CI --- docs/src/test-cli-js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/test-cli-js.md b/docs/src/test-cli-js.md index 637d075a3259d..5a2bb5ca52663 100644 --- a/docs/src/test-cli-js.md +++ b/docs/src/test-cli-js.md @@ -102,7 +102,7 @@ npx playwright test --ui | `--project ` | Only run tests from the specified list of projects, supports '*' wildcard (default: run all projects). | | `--quiet` | Suppress stdio. | | `--repeat-each ` | Run each test `N` times (default: 1). | -| `--reporter ` | Reporter to use, comma-separated, can be "dot", "line", "list", or others (default: "list"). You can also pass a path to a custom reporter file. | +| `--reporter ` | Reporter to use, comma-separated, can be "dot", "line", "list", or others (default: "list" locally and "dot" on CI). You can also pass a path to a custom reporter file. | | `--retries ` | Maximum retry count for flaky tests, zero for no retries (default: no retries). | | `--shard ` | Shard tests and execute only the selected shard, specified in the form "current/all", 1-based, e.g., "3/5". | | `--test-list ` | Path to a file containing a list of tests to run. See [test list](#test-list) for details. | @@ -317,7 +317,7 @@ npx playwright merge-reports ./reports | Option | Description | | :--- | :--- | | `-c, --config ` | Configuration file. Can be used to specify additional configuration for the output report | -| `--reporter ` | Reporter to use, comma-separated, can be "list", "line", "dot", "json", "junit", "null", "github", "html", "blob" (default: "list") | +| `--reporter ` | Reporter to use, comma-separated, can be "list", "line", "dot", "json", "junit", "null", "github", "html", "blob" (default: "list" locally and "dot" on CI) | ### Clear Cache