File SystemTest Runner
Set a per-test timeout with the Bun test runner
Use the --timeout flag to set a timeout for each test in milliseconds. A test that exceeds this timeout is marked as failed.
Mark a test as a "todo" with the Bun test runner
To remind yourself to write a test later, use the test.todo function. An implementation isn't required.
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.