File SystemTest RunnerMigrate from Jest to Bun's test runnerIn many cases, Bun's test runner can run Jest test suites with no code changes. Run bun test instead of npx jest or yarn test .Copy MarkdownOpenRun tests in watch mode with BunUse the --watch flag to run your tests in watch mode.Mock functions in `bun test`Create mocks with the mock function from bun:test .