summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2019-01-15 09:19:58 -0800
committerRyan Dahl <ry@tinyclouds.org>2019-01-15 12:19:58 -0500
commitc870cf40823a4900278f8ddf03489338c169878b (patch)
tree80c171f7bb36c988f459a4d0ee248a40d3feb34b /tools/test.py
parentac6ac5037ff53f4e7b9693aeed24f1e3ef1339ad (diff)
Add --prefetch flag for deps prefetch without running (#1475)
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py
index 41e811a6d..9a0b73359 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -12,6 +12,7 @@ from unit_tests import unit_tests
from util_test import util_test
from benchmark_test import benchmark_test
from repl_test import repl_tests
+from prefetch_test import prefetch_test
import subprocess
import http_server
@@ -59,6 +60,8 @@ def main(argv):
unit_tests(deno_exe)
+ prefetch_test(deno_exe)
+
integration_tests(deno_exe)
# TODO We currently skip testing the prompt in Windows completely.