mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
6be389ce29
Note: tests are not the only part of the codebase that uses `std`. Other parts, like `tools/`, do too. So, it could be argued that this is a little misleading. Either way, I'm doing this as discussed with @mmastrac.
23 lines
339 B
TypeScript
23 lines
339 B
TypeScript
import { unreachable } from "../../../tests/util/std/assert/mod.ts";
|
|
|
|
const permissions: Deno.PermissionName[] = [
|
|
"read",
|
|
"write",
|
|
"net",
|
|
"env",
|
|
"run",
|
|
"ffi",
|
|
"hrtime",
|
|
];
|
|
|
|
for (const name of permissions) {
|
|
Deno.test({
|
|
name,
|
|
permissions: {
|
|
[name]: true,
|
|
},
|
|
fn() {
|
|
unreachable();
|
|
},
|
|
});
|
|
}
|