mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
e7abb705f9
This reverts commit 6e2abb2b13
.
23 lines
347 B
TypeScript
23 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();
|
|
},
|
|
});
|
|
}
|