Files
bun.sh/docs/guides/test/bail.md
Colin McDonnell d62b0c3652 Readability tweaks
2023-08-25 12:47:47 -07:00

480 B

name
name
Bail early with the Bun test runner

Use the --bail flag to bail on a test run after a single failure. This is useful for aborting as soon as possible in a continuous integration environment.

$ bun test --bail

To bail after a certain threshold of failures, optionally specify a number after the flag.

# bail after 10 failures
$ bun test --bail 10

See Docs > Test runner for complete documentation of bun test.