summaryrefslogtreecommitdiff
path: root/docs/testing.md
diff options
context:
space:
mode:
authorTaisuke Fukuno <fukuno@jig.jp>2020-06-06 06:01:44 +0900
committerGitHub <noreply@github.com>2020-06-05 17:01:44 -0400
commitd2243b1125722e775b1f9719197260d1cda1220d (patch)
tree27778e56fd6ac324cb4780ab88546d2dd5982fd3 /docs/testing.md
parent18670c47e69ec2b9ceef6ec0011fbbdc4b845be6 (diff)
deno test should run mjs files (#6122)
Diffstat (limited to 'docs/testing.md')
-rw-r--r--docs/testing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/testing.md b/docs/testing.md
index ba484c972..67c472b80 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -102,6 +102,6 @@ deno test my_test.ts
```
You can also omit the file name, in which case all tests in the current
-directory (recursively) that match the glob `{*_,*.,}test.{js,ts,jsx,tsx}` will
-be run. If you pass a directory, all files in the directory that match this glob
-will be run.
+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.