1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/test/ignore_permissions.ts

16 lines
233 B
TypeScript

Deno.test({
name: "ignore",
permissions: {
read: true,
write: true,
net: true,
env: true,
run: true,
ffi: true,
hrtime: true,
},
ignore: true,
fn() {
throw new Error("unreachable");
},
});