summaryrefslogtreecommitdiff
path: root/tests/specs/test/ignore/main.ts
blob: 2339835db34817501834c7493f25262c0680d56d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
for (let i = 0; i < 5; i++) {
  Deno.test({
    name: `test ${i}`,
    ignore: true,
    fn() {
      throw new Error("unreachable");
    },
  });
}
for (let i = 5; i < 10; i++) {
  Deno.test.ignore({
    name: `test ${i}`,
    fn() {
      throw new Error("unreachable");
    },
  });
}