import { test, expect } from "bun:test"; import { add } from "./add"; test("HIDDEN: '1\\n2,3' returns 6", () => { expect(add("1\n2,3")).toBe(6); }); test("HIDDEN: '1\\n2\\n3' returns 6", () => { expect(add("1\n2\n3")).toBe(6); });