summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-11-15 00:19:12 +0000
committerGitHub <noreply@github.com>2024-11-15 00:19:12 +0000
commitdcc75d5685ddb1ad3c1b97721cbc24bf6fa56c76 (patch)
tree0e148a4dcbf8dddbeaf5801e85e147a404ce6e1f /tests/integration
parent617350e79c58b6e01984e3d7c7436d243d0e5cff (diff)
chore: remove some unused tests (#26878)
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/run_tests.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs
index e29ecc486..549b88bac 100644
--- a/tests/integration/run_tests.rs
+++ b/tests/integration/run_tests.rs
@@ -2899,37 +2899,6 @@ console.log(returnsHi());"#,
.assert_exit_code(1);
}
-// TODO(bartlomieju): temporary disabled
-// itest!(warn_on_deprecated_api {
-// args: "run -A run/warn_on_deprecated_api/main.js",
-// output: "run/warn_on_deprecated_api/main.out",
-// http_server: true,
-// exit_code: 0,
-// });
-
-// itest!(warn_on_deprecated_api_verbose {
-// args: "run -A run/warn_on_deprecated_api/main.js",
-// output: "run/warn_on_deprecated_api/main.verbose.out",
-// envs: vec![("DENO_VERBOSE_WARNINGS".to_string(), "1".to_string())],
-// http_server: true,
-// exit_code: 0,
-// });
-
-// itest!(warn_on_deprecated_api_with_flag {
-// args: "run -A --quiet run/warn_on_deprecated_api/main.js",
-// output: "run/warn_on_deprecated_api/main_disabled_flag.out",
-// http_server: true,
-// exit_code: 0,
-// });
-
-// itest!(warn_on_deprecated_api_with_env_var {
-// args: "run -A run/warn_on_deprecated_api/main.js",
-// envs: vec![("DENO_NO_DEPRECATION_WARNINGS".to_string(), "1".to_string())],
-// output: "run/warn_on_deprecated_api/main_disabled_env.out",
-// http_server: true,
-// exit_code: 0,
-// });
-
#[test]
fn deno_json_imports_expand() {
let test_context = TestContextBuilder::for_npm().use_temp_cwd().build();