diff options
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-x | tools/unit_tests.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py index 460d32bc2..0c4667b63 100755 --- a/tools/unit_tests.py +++ b/tools/unit_tests.py @@ -15,7 +15,10 @@ def unit_tests(deno_exe): run([deno_exe, "js/unit_tests.ts", "permW0N1E0", "--allow-net"]) run([deno_exe, "js/unit_tests.ts", "permW0N0E1", "--allow-env"]) run([ - deno_exe, "js/unit_tests.ts", "permW1N1E1", "--allow-write", + deno_exe, + "js/unit_tests.ts", + "permW1N1E1", + "--allow-write", "--allow-net", "--allow-env", ]) |