From e746b6d80654ba4e4e26370fe6e4f784ce841d92 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Sat, 1 Jul 2023 18:00:14 -0600 Subject: refactor(core): Extract deno_core (#19658) `deno_core` is moving out! You'll find it at https://github.com/denoland/deno_core/ once this PR lands. --- cli/tests/integration/check_tests.rs | 29 ----------------------------- 1 file changed, 29 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 41c568ad3..ab17713f2 100644 --- a/cli/tests/integration/check_tests.rs +++ b/cli/tests/integration/check_tests.rs @@ -194,35 +194,6 @@ fn typecheck_declarations_unstable() { output.assert_exit_code(0); } -#[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(); -- cgit v1.2.3