mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
Add missing run permission in test function (#1697)
This commit is contained in:
parent
ed6aec9bf0
commit
ffe8f73d34
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export function testPerm(perms: DenoPermissions, fn: testing.TestFunction) {
|
|||
}
|
||||
|
||||
export function test(fn: testing.TestFunction) {
|
||||
testPerm({ write: false, net: false, env: false }, fn);
|
||||
testPerm({ write: false, net: false, env: false, run: false }, fn);
|
||||
}
|
||||
|
||||
test(function permSerialization() {
|
||||
|
|
Loading…
Reference in a new issue