summaryrefslogtreecommitdiff
path: root/cli/tests/integration/check_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/integration/check_tests.rs')
-rw-r--r--cli/tests/integration/check_tests.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/cli/tests/integration/check_tests.rs b/cli/tests/integration/check_tests.rs
index 41c568ad3..ab17713f2 100644
--- a/cli/tests/integration/check_tests.rs
+++ b/cli/tests/integration/check_tests.rs
@@ -195,35 +195,6 @@ fn typecheck_declarations_unstable() {
}
#[test]
-fn typecheck_core() {
- let context = TestContext::default();
- let deno_dir = context.deno_dir();
- let test_file = deno_dir.path().join("test_deno_core_types.ts");
- std::fs::write(
- &test_file,
- format!(
- "import \"{}\";",
- deno_core::resolve_path(
- &util::root_path()
- .join("core")
- .join("lib.deno_core.d.ts")
- .to_string(),
- &std::env::current_dir().unwrap()
- )
- .unwrap()
- ),
- )
- .unwrap();
-
- let args = vec!["run".to_string(), test_file.to_string()];
- let output = context.new_command().args_vec(args).split_output().run();
-
- println!("stdout: {}", output.stdout());
- println!("stderr: {}", output.stderr());
- output.assert_exit_code(0);
-}
-
-#[test]
fn ts_no_recheck_on_redirect() {
let test_context = TestContext::default();
let check_command = test_context.new_command().args_vec([