summaryrefslogtreecommitdiff
path: root/tests/specs/bench/workspace/package-a/mod.bench.ts
blob: 5fbf79e66c3b25462f7b075743e333118fd23e6c (plain)
1
2
3
4
5
6
7
import { add } from "./mod.ts";

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