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/bench/allow_none.ts

24 lines
347 B
TypeScript
Raw Normal View History

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();
},
});
}