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.
sh
bun test --bailTo bail after a certain threshold of failures, optionally specify a number after the flag.
sh
# bail after 10 failures
bun test --bail=10See Docs > Test runner for complete documentation of bun test.