summaryrefslogtreecommitdiff
path: root/tools/deno_dir_test.py
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-05-03 23:15:16 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-05-03 17:15:16 -0400
commitf6a9d7d7172df6422f895dcfe6f4267ad1b472da (patch)
tree086a9e3e75e7597f2d456c26749d9d9d64e51990 /tools/deno_dir_test.py
parent36081171323e266760db8bed2f31a6e3be7d8839 (diff)
add "deno run" subcommand (#2215)
Diffstat (limited to 'tools/deno_dir_test.py')
-rwxr-xr-xtools/deno_dir_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/deno_dir_test.py b/tools/deno_dir_test.py
index 4b6c3d8aa..bcfa370bf 100755
--- a/tools/deno_dir_test.py
+++ b/tools/deno_dir_test.py
@@ -35,7 +35,7 @@ def deno_dir_test(deno_exe, deno_dir):
def run_deno(deno_exe, deno_dir=None):
- cmd = [deno_exe, "tests/002_hello.ts"]
+ cmd = [deno_exe, "run", "tests/002_hello.ts"]
deno_dir_env = {"DENO_DIR": deno_dir} if deno_dir is not None else None
run(cmd, quiet=True, env=deno_dir_env)