From f6a9d7d7172df6422f895dcfe6f4267ad1b472da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 3 May 2019 23:15:16 +0200 Subject: add "deno run" subcommand (#2215) --- tools/unit_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/unit_tests.py') diff --git a/tools/unit_tests.py b/tools/unit_tests.py index abc9baf06..14284b325 100755 --- a/tools/unit_tests.py +++ b/tools/unit_tests.py @@ -34,7 +34,7 @@ def run_unit_test2(cmd): def run_unit_test(deno_exe, permStr, flags=None): if flags is None: flags = [] - cmd = [deno_exe] + flags + ["js/unit_tests.ts", permStr] + cmd = [deno_exe, "run"] + flags + ["js/unit_tests.ts", permStr] run_unit_test2(cmd) -- cgit v1.2.3