diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-02-12 15:22:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 15:22:43 -0500 |
commit | f29c40a43306ae23c848231ba71c94b12a8b06ee (patch) | |
tree | 7c227cab52d2aac051b51a576dcaf9821893b983 /tools/test.py | |
parent | 677a48781d566cd6645ef0df8207fc8e4d888688 (diff) |
Decouple ts_library_builder from std/testing (#1749)
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py index 51f31fbf4..9e43dca3e 100755 --- a/tools/test.py +++ b/tools/test.py @@ -60,6 +60,11 @@ def main(argv): check_exists(deno_exe) # Internal tools testing + run([ + "node", "./node_modules/.bin/ts-node", "--project", + "tools/ts_library_builder/tsconfig.json", + "tools/ts_library_builder/test.ts" + ]) setup_test() util_test() benchmark_test(build_dir, deno_exe) |