Update docs/src/test-api/class-testconfig.md

Co-authored-by: Yury Semikhatsky <yurys@chromium.org>
Signed-off-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Max Schmitt 2024-05-28 18:08:47 +02:00 committed by GitHub
parent 6f0dbe8186
commit 013284f8ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -164,7 +164,7 @@ export default defineConfig({
* since: v1.10 * since: v1.10
- type: ?<[RegExp]|[Array]<[RegExp]>> - type: ?<[RegExp]|[Array]<[RegExp]>>
Filter to only run tests with a title matching one of the patterns. For example, passing `grep: /cart/` should only run tests with "cart" in the title. Also available in the [command line](../test-cli.md) with the `-g` option. The regular expression will be tested against the string that consists of the test file name, `test.describe` name (if any), the test name and and test tags divided by spaces, e.g. `my-test.spec.ts my-suite my-test`. Filter to only run tests with a title matching one of the patterns. For example, passing `grep: /cart/` should only run tests with "cart" in the title. Also available in the [command line](../test-cli.md) with the `-g` option. The regular expression will be tested against the string that consists of the project name, the test file name, the `test.describe` name (if any), the test name and the test tags divided by spaces, e.g. `chromium my-test.spec.ts my-suite my-test`.
`grep` option is also useful for [tagging tests](../test-annotations.md#tag-tests). `grep` option is also useful for [tagging tests](../test-annotations.md#tag-tests).