diff options
Diffstat (limited to 'cli/tests/integration/node_compat_tests.rs')
-rw-r--r-- | cli/tests/integration/node_compat_tests.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/integration/node_compat_tests.rs b/cli/tests/integration/node_compat_tests.rs index 29d70708e..be5c96cef 100644 --- a/cli/tests/integration/node_compat_tests.rs +++ b/cli/tests/integration/node_compat_tests.rs @@ -1,6 +1,7 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use test_util as util; +use util::env_vars_for_npm_tests; #[test] fn node_compat_tests() { @@ -21,5 +22,7 @@ fn node_compat_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, }); |