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