summaryrefslogtreecommitdiff
path: root/tests/specs/test/ignore_persmissions/main.ts
blob: e9ade6dfe9960ded3f17676f5fbb005cde01310a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Deno.test({
  name: "ignore",
  permissions: {
    read: true,
    write: true,
    net: true,
    env: true,
    run: true,
    ffi: true,
  },
  ignore: true,
  fn() {
    throw new Error("unreachable");
  },
});