From 1fafbe580cdf09baaaccf9b9ee6e6ee2b87fabd1 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 28 May 2024 18:08:34 +0200 Subject: [PATCH] docs(test-cli): remove --tag from docs (#31041) Fixes https://github.com/microsoft/playwright/issues/31038 --- docs/src/test-cli-js.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/src/test-cli-js.md b/docs/src/test-cli-js.md index aa4430bd42..290fb7df96 100644 --- a/docs/src/test-cli-js.md +++ b/docs/src/test-cli-js.md @@ -100,7 +100,6 @@ Complete set of Playwright Test options is available in the [configuration file] | `--reporter ` | Choose a reporter: minimalist `dot`, concise `line` or detailed `list`. See [reporters](./test-reporters.md) for more information. You can also pass a path to a [custom reporter](./test-reporters.md#custom-reporters) file. | | `--retries ` | The maximum number of [retries](./test-retries.md#retries) for flaky tests, defaults to zero (no retries). | | `--shard ` | [Shard](./test-parallel.md#shard-tests-between-multiple-machines) tests and execute only selected shard, specified in the form `current/all`, 1-based, for example `3/5`.| -| `--tag ` | Only run tests with a tag matching this tag expression. Learn more about [tagging](./test-annotations.md#tag-tests). | | `--timeout ` | Maximum timeout in milliseconds for each test, defaults to 30 seconds. Learn more about [various timeouts](./test-timeouts.md).| | `--trace ` | Force tracing mode, can be `on`, `off`, `on-first-retry`, `on-all-retries`, `retain-on-failure` | | `--update-snapshots` or `-u` | Whether to update [snapshots](./test-snapshots.md) with actual results instead of comparing them. Use this when snapshot expectations have changed.|