What problem does it solve? Moving an existing Jest test suite to Bun's test runner involves subtle API differences in mocks, timers, module mocking, and configuration that cause confusing failures if handled ad hoc. ## Core Features & Use Cases - API Compatibility Mapping: Side-by-side tables for describe/test/expect, mocks, spies, timers, and snapshots showing what works unchanged and what needs rewriting. - Config Conversion: Guidance for translating jest.config.js settings (testMatch, timeout, setupFiles, coverage thresholds) into bunfig.toml equivalents. - Troubleshooting Playbook: Fixes for common migration errors such as jest.mock hoisting, missing timer functions, custom matchers, and snapshot mismatches. - Use Case: A team switching a TypeScript project from Jest to Bun runs bun test, hits jest is not defined and module mock failures, then follows the step-by-step migration to update imports, mocks, and scripts. ## Quick Start Ask the assistant to migrate your project's Jest tests to Bun's test runner and update the configuration accordingly.