Bun Test Runner
Bun includes a fast, Jest-compatible test runner. Write tests using familiar syntax without any configuration.
Basic Test Structure
Tests use describe, test/it, and expect:
Loading Bun Playground...
Testing Functions
Test your functions thoroughly:
Loading Bun Playground...
Async Tests
Test asynchronous code:
Loading Bun Playground...
Test Matchers
Common matchers for assertions:
Loading Bun Playground...
Test Organization
Organize tests with lifecycle hooks:
Loading Bun Playground...
Exercise: Test Writer
Write tests for a simple calculator:
Loading Bun Exercise...
Exercise: Custom Matcher
Create a custom matcher for testing ranges:
Loading Bun Exercise...

