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/repl_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/repl_test.py') diff --git a/tools/repl_test.py b/tools/repl_test.py index 59346d3e8..9ea1b82af 100644 --- a/tools/repl_test.py +++ b/tools/repl_test.py @@ -19,7 +19,7 @@ class Repl(object): def input(self, *lines, **kwargs): exit_ = kwargs.pop("exit", True) sleep_ = kwargs.pop("sleep", 0) - p = Popen([self.deno_exe, "-A"], stdout=PIPE, stderr=PIPE, stdin=PIPE) + p = Popen([self.deno_exe], stdout=PIPE, stderr=PIPE, stdin=PIPE) try: # Note: The repl takes a >100ms until it's ready. time.sleep(sleep_) -- cgit v1.2.3