diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-23 19:47:43 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-27 17:51:24 -0400 |
commit | e13f3c10cac4fabff7e6cd4a4736703ca7c56d2d (patch) | |
tree | df74f8c9fa5b917911b78cecb3c0bd450bbf79e5 /tools/test.py | |
parent | 722c7e4a1b5acda4472338f021f1a216ad9c6c08 (diff) |
Add ability to unit test by permissions.
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py index 12582f83f..6e5cb548b 100755 --- a/tools/test.py +++ b/tools/test.py @@ -5,6 +5,7 @@ import os import sys from check_output_test import check_output_test from util import executable_suffix, run, build_path +from unit_tests import unit_tests from util_test import util_test import subprocess import http_server @@ -41,7 +42,7 @@ def main(argv): deno_exe = os.path.join(build_dir, "deno" + executable_suffix) check_exists(deno_exe) - run([deno_exe, "js/unit_tests.ts", "--allow-write"]) + unit_tests(deno_exe) check_exists(deno_exe) check_output_test(deno_exe) |