mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
5cf97f539b
Remove `--allow-hrtime` and `--deny-hrtime`. We are doing this because it is already possible to get access to high resolution timers through workers and SharedArrayBuffer. Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
15 lines
215 B
TypeScript
15 lines
215 B
TypeScript
Deno.test({
|
|
name: "ignore",
|
|
permissions: {
|
|
read: true,
|
|
write: true,
|
|
net: true,
|
|
env: true,
|
|
run: true,
|
|
ffi: true,
|
|
},
|
|
ignore: true,
|
|
fn() {
|
|
throw new Error("unreachable");
|
|
},
|
|
});
|