restore bun bd and make it quiet (#19831)

This commit is contained in:
190n
2025-05-22 00:40:48 -07:00
committed by GitHub
parent b4450db807
commit 3e97c1caf3
2 changed files with 12 additions and 11 deletions

View File

@@ -1,36 +1,36 @@
## bun tests
**IMPORTANT**: use the `bun agent` command instead of the `bun` command. For example:
**IMPORTANT**: use the `bun bd` command instead of the `bun` command. For example:
✅ Good
```sh
bun agent test internal/ban-words.test.ts
bun agent ./foo.ts
bun bd test internal/ban-words.test.ts
bun bd ./foo.ts
```
The `bun agent` command runs the DEBUG build. If you forget to run the debug build, your changes will not be reflected..
The `bun bd` command runs the DEBUG build. If you forget to run the debug build, your changes will not be reflected..
### Run a file
To run a file, you can use the `bun agent <file-path>` command.
To run a file, you can use the `bun bd <file-path>` command.
```sh
bun agent ./foo.ts
bun bd ./foo.ts
```
### Run tests
To run a single test, you need to use the `bun agent test <test-name>` command.
To run a single test, you need to use the `bun bd test <test-name>` command.
```sh
bun agent test internal/ban-words.test.ts
bun bd test internal/ban-words.test.ts
```
You must ALWAYS make sure to pass a file path to the `bun agent test <file-path>` command. DO NOT try to run ALL the tests at once unless you're in a specific subdirectory.
You must ALWAYS make sure to pass a file path to the `bun bd test <file-path>` command. DO NOT try to run ALL the tests at once unless you're in a specific subdirectory.
### Run a Node.js test
```sh
bun agent --silent node:test test-fs-link
bun bd --silent node:test test-fs-link
```