summaryrefslogtreecommitdiff
path: root/tests/integration/run_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/run_tests.rs')
-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();