summaryrefslogtreecommitdiff
path: root/tests/specs/lockfile/no_lock/main.test.ts
blob: fe45c799d12eb097b2a8d109f95ef6be8816f3f3 (plain)
1
2
3
4
5
6
7
8
import { getValue } from "mod";

Deno.test("test", () => {
  const testing = 1 + getValue();
  if (testing !== 6) {
    throw "FAIL";
  }
});