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

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

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