initial commit

This commit is contained in:
i2p
2026-08-27 21:09:14 +00:00
commit a5b6d59437
12681 changed files with 3253832 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
---
title: Re-run tests multiple times with the Bun test runner
sidebarTitle: Re-run tests
mode: center
---
The `--rerun-each` flag runs every test multiple times. Use it to find flaky or non-deterministic tests.
```sh terminal icon="terminal"
# re-run each test 10 times
bun test --rerun-each 10
```
---
See [`bun test`](/test).