diff options
author | Dmitry Sharshakov <sh7dm@outlook.com> | 2019-02-03 06:05:30 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-02 22:05:30 -0500 |
commit | 181b03273c4c9282d8176953d68713e37b50294b (patch) | |
tree | abdc1d696c889739b9d3ac254af7fa6f673fcc68 /tools/test.py | |
parent | 1d48e025d341c9295f7ee02039eaa6c00a720344 (diff) |
Add isTTY function (#1622)
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py index 8da13b01a..246b094b7 100755 --- a/tools/test.py +++ b/tools/test.py @@ -66,12 +66,14 @@ def main(argv): integration_tests(deno_exe) - # TODO We currently skip testing the prompt in Windows completely. + # TODO We currently skip testing the prompt and IsTTY in Windows completely. # Windows does not support the pty module used for testing the permission # prompt. if os.name != 'nt': from permission_prompt_test import permission_prompt_test + from is_tty_test import is_tty_test permission_prompt_test(deno_exe) + is_tty_test(deno_exe) repl_tests(deno_exe) |