```sh-diff doesn't work

This commit is contained in:
Jarred Sumner
2024-04-04 08:48:51 -07:00
parent ca1dbb4eb2
commit a09c421f2a

View File

@@ -4,7 +4,7 @@ name: Migrate from Jest to Bun's test runner
In many cases, Bun's test runner can run Jest test suites with no code changes. Just run `bun test` instead of `npx jest`, `yarn test`, etc.
```sh-diff
```sh
- $ npx jest
- $ yarn test
+ $ bun test
@@ -57,7 +57,7 @@ Replace `bail` in your Jest config with the `--bail` CLI flag.
- };
``` -->
```sh-diff
```sh
$ bun test --bail 3
```