summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/testing.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/testing.md b/docs/testing.md
index 67c472b80..6fc76b8c1 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -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.