mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
16 lines
236 B
TypeScript
16 lines
236 B
TypeScript
Deno.test({
|
|
name: "ignore",
|
|
permissions: {
|
|
read: true,
|
|
write: true,
|
|
net: true,
|
|
env: true,
|
|
run: true,
|
|
plugin: true,
|
|
hrtime: true,
|
|
},
|
|
ignore: true,
|
|
fn() {
|
|
throw new Error("unreachable");
|
|
},
|
|
});
|