diff options
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/mod.rs | 2 | ||||
-rw-r--r-- | tests/integration/node_compat_tests.rs | 37 |
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, -}); |