summaryrefslogtreecommitdiff
path: root/tools/target_test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-08-30 11:11:33 -0400
committerGitHub <noreply@github.com>2019-08-30 11:11:33 -0400
commitc370f749b2260cc1d8970b1dcdc63ff00008e26d (patch)
tree1eff43e71ca0a5ccaeb48a3bf891bf2fdc0712ba /tools/target_test.py
parent5401cb76304ae8d3e8896f6020ba4ef25bac0bba (diff)
Remove ts_library_builder, maintain lib.deno_runtime.d.ts by hand (#2827)
Diffstat (limited to 'tools/target_test.py')
-rw-r--r--tools/target_test.py10
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],