summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorMohammad Sulaiman <mohammad.sulaiman@exalt.ps>2024-09-16 11:53:20 +0300
committerGitHub <noreply@github.com>2024-09-16 09:53:20 +0100
commiteb8ee95f08186c948e5b83501cedd59d6e3b4ef2 (patch)
treed22a95d6c5db63c0e6481e8a8eb04e292d760e9a /tests/integration
parente4ea9be87463ce1b13e826db80452b17a9762f32 (diff)
chore: deprecate node compat itests (#25573)
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/mod.rs2
-rw-r--r--tests/integration/node_compat_tests.rs37
2 files changed, 0 insertions, 39 deletions
diff --git a/tests/integration/mod.rs b/tests/integration/mod.rs
index d1d20aee1..159663233 100644
--- a/tests/integration/mod.rs
+++ b/tests/integration/mod.rs
@@ -41,8 +41,6 @@ mod jupyter;
mod lint;
#[path = "lsp_tests.rs"]
mod lsp;
-#[path = "node_compat_tests.rs"]
-mod node_compat_tests;
#[path = "node_unit_tests.rs"]
mod node_unit_tests;
#[path = "npm_tests.rs"]
diff --git a/tests/integration/node_compat_tests.rs b/tests/integration/node_compat_tests.rs
deleted file mode 100644
index 9dfd07ab4..000000000
--- a/tests/integration/node_compat_tests.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-
-use test_util as util;
-use test_util::itest;
-use util::env_vars_for_npm_tests;
-
-itest!(node_test_module {
- args: "test node/test.js",
- output: "node/test.out",
- envs: env_vars_for_npm_tests(),
- exit_code: 1,
- http_server: true,
-});
-
-itest!(node_test_module_no_sanitizers {
- args: "test -A --no-check node/test_no_sanitizers/test.js",
- output: "node/test_no_sanitizers/test.out",
- envs: env_vars_for_npm_tests(),
- exit_code: 0,
- // TODO(mmastrac): fix exit sanitizer part of test
- // exit_code: 123,
- http_server: true,
-});
-
-itest!(
- node_process_beforeexit_exit_events_emitted_without_listeners {
- args: "run node/process_beforeexit_exit_events.ts",
- output: "node/process_beforeexit_exit_events.out",
- exit_code: 0,
- }
-);
-
-itest!(web_node_events_dispatched_in_correct_order {
- args: "run node/events_order.ts",
- output: "node/events_order.out",
- exit_code: 0,
-});