Remove ts_library_builder, maintain lib.deno_runtime.d.ts by hand (#2827)

This commit is contained in:
Ryan Dahl 2019-08-30 11:11:33 -04:00 committed by GitHub
parent 5401cb7630
commit c370f749b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 2869 additions and 1753 deletions

View file

@ -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],