- Running repl from js side.
- Add tests for repl behavior.
- Handle ctrl-C and ctrl-D.
This commit is contained in:
Andy Hayden 2018-11-05 09:55:59 -08:00 committed by Ryan Dahl
parent 5e48a681c4
commit 27ecfc1617
13 changed files with 505 additions and 13 deletions

View file

@ -11,6 +11,7 @@ from util import build_path, enable_ansi_colors, executable_suffix, run, rmtree
from unit_tests import unit_tests
from util_test import util_test
from benchmark_test import benchmark_test
from repl_test import repl_tests
import subprocess
import http_server
@ -67,6 +68,8 @@ def main(argv):
from permission_prompt_test import permission_prompt_test
permission_prompt_test(deno_exe)
repl_tests(deno_exe)
rmtree(deno_dir)
deno_dir_test(deno_exe, deno_dir)