diff options
Diffstat (limited to 'tools/target_test.py')
-rw-r--r-- | tools/target_test.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/target_test.py b/tools/target_test.py index 6ff3c11e8..da1bd5537 100644 --- a/tools/target_test.py +++ b/tools/target_test.py @@ -34,16 +34,6 @@ class TestTarget(DenoTestCase): def test_core_http_benchmark(self): self._test("deno_core_http_bench_test") - def test_ts_library_builder(self): - result = run_output([ - "node", "./node_modules/.bin/ts-node", "--project", - "tools/ts_library_builder/tsconfig.json", - "tools/ts_library_builder/test.ts" - ], - quiet=True) - self.assertEqual(result.code, 0) - assert "ts_library_builder ok" in result.out - def test_no_color(self): t = os.path.join(tests_path, "no_color.js") result = run_output([self.deno_exe, "run", t], |