bun-types
Version:
Type definitions and documentation for Bun, an incredibly fast JavaScript runtime
25 lines (17 loc) • 604 B
text/mdx
title: Run tests in watch mode with Bun
sidebarTitle: Watch mode
mode: center
Use the `--watch` flag to run your tests in watch mode.
```sh terminal icon="terminal"
bun test --watch
```
This will restart the running Bun process whenever a file change is detected. It's fast. In this example, the editor is configured to save the file on every keystroke.
<Frame>

</Frame>
See [Docs > Test Runner](/docs/test) for complete documentation on the test runner.