summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/lockfile/basic/main.test.ts
blob: bb757de239fed60a86f804ca13c1193be6b08da2 (plain)
1
2
3
4
5
6
7
8
import "./main.ts";

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