Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Execute tests using Bun’s test runner
bun test
bun test math.test.ts
bun test --watch
import { test, expect } from "bun:test"; test("addition", () => { expect(2 + 2).toBe(4); }); test("async test", async () => { const result = await fetchData(); expect(result).toBeDefined(); });