summaryrefslogtreecommitdiff
path: root/docs/testing.md
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-11-22 14:40:33 +0000
committerGitHub <noreply@github.com>2020-11-22 15:40:33 +0100
commit7405356e23cc20b69e0f5d4313110d7780665f2b (patch)
tree926d041e1fbc544dd82946659d4b601f31113890 /docs/testing.md
parent2c00f6c5482e024745378b61b654d9b524ab6f08 (diff)
chore(cli/flags): Rename --failfast to --fail-fast (#8456)
Diffstat (limited to 'docs/testing.md')
-rw-r--r--docs/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/testing.md b/docs/testing.md
index b075bbca3..8fc180244 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -199,10 +199,10 @@ Deno.test({
## Failing fast
If you have a long running test suite and wish for it to stop on the first
-failure, you can specify the `--failfast` flag when running the suite.
+failure, you can specify the `--fail-fast` flag when running the suite.
```shell
-deno test --failfast
+deno test --fail-fast
```
## Test coverage