0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 20:25:12 -05:00

docs: testing filter info (#6313)

This commit is contained in:
Rob Waller 2020-06-16 22:17:00 +01:00 committed by GitHub
parent b3c72d1e45
commit b86514aa7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,3 +105,13 @@ You can also omit the file name, in which case all tests in the current
directory (recursively) that match the glob `{*_,*.,}test.{js,mjs,ts,jsx,tsx}`
will be run. If you pass a directory, all files in the directory that match this
glob will be run.
Tests can be run individually or in groups using the command line `--filter`
option.
```shell
deno test --filter "hello world" tests/
```
This command will run any test which contains the pattern "hello world" in its
name stored within the `tests/` directory.