summaryrefslogtreecommitdiff
path: root/tests/specs/test/package_json_basic_auto_install/lib.test.ts
blob: 4e833e1f331b4378fcb7adcf2f44717c4cad3dd3 (plain)
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");
  }
});