mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
Add repl (#998)
- Running repl from js side. - Add tests for repl behavior. - Handle ctrl-C and ctrl-D.
This commit is contained in:
parent
5e48a681c4
commit
27ecfc1617
13 changed files with 505 additions and 13 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue