1 2 3 4 5 6 7
import { add } from "./lib.ts"; Deno.test("should add", () => { if (add(1, 2) !== 3) { throw new Error("Fail"); } });