From c45e9f784c4ab50eb9c3b2ca8047e4d98774284e Mon Sep 17 00:00:00 2001 From: Julian Luis Almandos Date: Tue, 26 Mar 2024 15:10:31 +0800 Subject: [PATCH] docs(test-projects-js.md): fix typo in "Test filtering" section This patch fixes a typo in the "Test filtering" section within the "Playwright Test" -> "Projects" page. --- docs/src/test-projects-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/test-projects-js.md b/docs/src/test-projects-js.md index ee73846183..d193b4bdbe 100644 --- a/docs/src/test-projects-js.md +++ b/docs/src/test-projects-js.md @@ -216,7 +216,7 @@ You can also teardown your setup by adding a [`property: TestProject.teardown`] ### Test filtering -If `--grep/--grep-invert` or `--shard` [option](./test-cli.md#reference) is used, test file name filter is specified in [command line](./test-cli.md) or [test.only()](./api/class-test.md#test-only) is used, it will only apply to the tests from the deepest projects in the project dependency chain. In other words, if a matching test belongs to a project that has project dependencies, Playwright will run all the tests from the project depdencies ignoring the filters. +If `--grep/--grep-invert` or `--shard` [option](./test-cli.md#reference) is used, test file name filter is specified in [command line](./test-cli.md) or [test.only()](./api/class-test.md#test-only) is used, it will only apply to the tests from the deepest projects in the project dependency chain. In other words, if a matching test belongs to a project that has project dependencies, Playwright will run all the tests from the project dependencies ignoring the filters. ## Custom project parameters