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

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