summaryrefslogtreecommitdiff
path: root/tests/specs/workspaces/lockfile/integration.test.ts
blob: 91e921b334934d2d19929aaf5f9170f9573867ef (plain)
1
2
3
4
5
6
7
import { add } from "@scope/pkg";

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