From be6ab76c048d136a17432b3816763fb74200fdaa Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Tue, 30 Jan 2024 20:44:33 +0100 Subject: [PATCH] docs: add CLI documentation for `--no-deps` (#29235) --- docs/src/test-cli-js.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/test-cli-js.md b/docs/src/test-cli-js.md index 29ff2e6b9f..193e2cae6f 100644 --- a/docs/src/test-cli-js.md +++ b/docs/src/test-cli-js.md @@ -89,6 +89,7 @@ Complete set of Playwright Test options is available in the [configuration file] | `--global-timeout ` | Total timeout for the whole test run in milliseconds. By default, there is no global timeout. Learn more about [various timeouts](./test-timeouts.md).| | `--list` | list all the tests, but do not run them.| | `--max-failures ` or `-x`| Stop after the first `N` test failures. Passing `-x` stops after the first failure.| +| `--no-deps` | Ignore the dependencies between projects and behave as if they were not specified. | | `--output ` | Directory for artifacts produced by tests, defaults to `test-results`. | | `--pass-with-no-tests` | Allows the test suite to pass when no files are found. | | `--project ` | Only run tests from one of the specified [projects](./test-projects.md). Defaults to running all projects defined in the configuration file.|