Guides Test Runner
Bail early with the Bun test runner
Use the --bail flag to abort a test run after the first failure, so a continuous integration run fails as early as possible.
$ bun test --bailTo bail after a certain number of failures, pass a number after the flag.
# bail after 10 failures
$ bun test --bail=10See bun test.