From dcb4ffb93a380710c32cc212b937ea38db5ceacc Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 25 Nov 2022 18:29:48 -0500 Subject: refactor: move dts files, diagnostics.rs, and tsc.rs to tsc folder (#16820) --- cli/tests/integration/check_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/tests/integration/check_tests.rs') diff --git a/cli/tests/integration/check_tests.rs b/cli/tests/integration/check_tests.rs index 03a5c932c..4b3e512c4 100644 --- a/cli/tests/integration/check_tests.rs +++ b/cli/tests/integration/check_tests.rs @@ -126,7 +126,7 @@ fn typecheck_declarations_ns() { let output = util::deno_cmd() .arg("test") .arg("--doc") - .arg(util::root_path().join("cli/dts/lib.deno.ns.d.ts")) + .arg(util::root_path().join("cli/tsc/dts/lib.deno.ns.d.ts")) .output() .unwrap(); println!("stdout: {}", String::from_utf8(output.stdout).unwrap()); @@ -140,7 +140,7 @@ fn typecheck_declarations_unstable() { .arg("test") .arg("--doc") .arg("--unstable") - .arg(util::root_path().join("cli/dts/lib.deno.unstable.d.ts")) + .arg(util::root_path().join("cli/tsc/dts/lib.deno.unstable.d.ts")) .output() .unwrap(); println!("stdout: {}", String::from_utf8(output.stdout).unwrap()); -- cgit v1.2.3