import { test, expect } from "bun:test"; import { add } from "./add"; test("HIDDEN: empty string returns 0", () => { expect(add("")).toBe(0); });