summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/package_json/basic/main.test.ts
blob: 298ce1f5bee459218e3421372b4e7c47f44631e9 (plain)
1
2
3
4
5
6
7
import { add } from "./main.ts";

Deno.test("should add", () => {
  if (add(1, 2) !== 3) {
    throw new Error("Fail");
  }
});