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

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