summaryrefslogtreecommitdiff
path: root/tools/unit_tests.py
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2019-08-03 18:34:13 -0700
committerRyan Dahl <ry@tinyclouds.org>2019-08-03 21:34:13 -0400
commit52c13fb3ed94e41d90bbe08d1bc299ca90505755 (patch)
treea3d1f90da7a4febab0f1fd1adb4e8c85ec40db80 /tools/unit_tests.py
parentc6861b537ead4bba21817610664d68ffbe7daad5 (diff)
Enforce env permission on homeDir() and execPath (#2714)
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-xtools/unit_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py
index f8cd1af64..859afcea3 100755
--- a/tools/unit_tests.py
+++ b/tools/unit_tests.py
@@ -10,7 +10,7 @@ from test_util import DenoTestCase, run_tests
class JsUnitTests(DenoTestCase):
def test_unit_test_runner(self):
cmd = [
- self.deno_exe, "run", "--reload", "--allow-run",
+ self.deno_exe, "run", "--reload", "--allow-run", "--allow-env",
"js/unit_test_runner.ts"
]
process = subprocess.Popen(