mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
24 lines
347 B
TypeScript
24 lines
347 B
TypeScript
|
import { unreachable } from "../../../../test_util/std/testing/asserts.ts";
|
||
|
|
||
|
const permissions: Deno.PermissionName[] = [
|
||
|
"read",
|
||
|
"write",
|
||
|
"net",
|
||
|
"env",
|
||
|
"run",
|
||
|
"ffi",
|
||
|
"hrtime",
|
||
|
];
|
||
|
|
||
|
for (const name of permissions) {
|
||
|
Deno.bench({
|
||
|
name,
|
||
|
permissions: {
|
||
|
[name]: true,
|
||
|
},
|
||
|
fn() {
|
||
|
unreachable();
|
||
|
},
|
||
|
});
|
||
|
}
|