summaryrefslogtreecommitdiff
path: root/tests/testdata/bench/no_color.ts
blob: d15bf35728d683f98337f74d6685ab1e981976b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Deno.bench({
  name: "success",
  fn() {},
});

Deno.bench({
  name: "fail",
  fn() {
    throw new Error("fail");
  },
});

Deno.bench({
  name: "ignored",
  ignore: true,
  fn() {},
});