import { test, expect } from "bun:test"; import { add } from "./add"; test("HIDDEN: '1,2,3,4' returns 10", () => { expect(add("1,2,3,4")).toBe(10); }); test("HIDDEN: '1,2,3,4,5,6,7,8,9,10' returns 55", () => { expect(add("1,2,3,4,5,6,7,8,9,10")).toBe(55); });