summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py3
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)