diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2018-11-05 06:52:31 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-04 11:52:31 -0800 |
commit | 4e07783663d51877e7d41465cf5ef10d1540c4b3 (patch) | |
tree | f02336f4f46e8330362f1409d1c298db50dcc98a /tools/test.py | |
parent | e93d686e9d5e797f7e4e02bda56a8b6d535326ca (diff) |
Improve integration test harness (#1142)
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test.py b/tools/test.py index e2d077245..18fc23e5c 100755 --- a/tools/test.py +++ b/tools/test.py @@ -4,7 +4,7 @@ # Usage: ./tools/test.py out/Debug import os import sys -from check_output_test import check_output_test +from integration_tests import integration_tests from deno_dir_test import deno_dir_test from setup_test import setup_test from util import build_path, enable_ansi_colors, executable_suffix, run, rmtree @@ -58,7 +58,7 @@ def main(argv): unit_tests(deno_exe) - check_output_test(deno_exe) + integration_tests(deno_exe) # TODO We currently skip testing the prompt in Windows completely. # Windows does not support the pty module used for testing the permission |