diff --git a/docs/guides/test/migrate-from-jest.md b/docs/guides/test/migrate-from-jest.md index 7b0447867c..ca582a5efe 100644 --- a/docs/guides/test/migrate-from-jest.md +++ b/docs/guides/test/migrate-from-jest.md @@ -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 ```