summaryrefslogtreecommitdiff
path: root/tests/specs/workspaces/lockfile/pkg/mod.test.ts
blob: 9e7a8c445f719dafa8ea5429c83a482ce812b417 (plain)
1
2
3
4
5
6
7
import { add } from "./mod.ts";

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