mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 20:39:05 +00:00
docs: --bail [n] -> --bail=[n] (#15301)
This commit is contained in:
@@ -124,7 +124,7 @@ Use the `--bail` flag to abort the test run early after a pre-determined number
|
||||
$ bun test --bail
|
||||
|
||||
# bail after 10 failure
|
||||
$ bun test --bail 10
|
||||
$ bun test --bail=10
|
||||
```
|
||||
|
||||
## Watch mode
|
||||
|
||||
@@ -14,7 +14,7 @@ To bail after a certain threshold of failures, optionally specify a number after
|
||||
|
||||
```sh
|
||||
# bail after 10 failures
|
||||
$ bun test --bail 10
|
||||
$ bun test --bail=10
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
@@ -57,7 +57,7 @@ Replace `bail` in your Jest config with the `--bail` CLI flag.
|
||||
``` -->
|
||||
|
||||
```sh
|
||||
$ bun test --bail 3
|
||||
$ bun test --bail=3
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user