1 2 3 4 5 6 7
import { it, expect } from "bun:test"; it("inspect", () => { expect(Bun.inspect(new TypeError("what")).includes("TypeError: what")).toBe( true ); });