diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-07 16:10:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 16:10:50 -0500 |
commit | f8bcf6be28a1aab9e3be45755aac644fc65db681 (patch) | |
tree | d3ae4e207884d888dffee119d4b465b52487856f /test_util/src/lib.rs | |
parent | 1a472ad06bdc55b1fa0c0f26ca2d24d709f2e0c3 (diff) |
feat(npm): add support for `NPM_CONFIG_REGISTRY` (#16980)
Diffstat (limited to 'test_util/src/lib.rs')
-rw-r--r-- | test_util/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/src/lib.rs b/test_util/src/lib.rs index b1b14c004..588b72bbe 100644 --- a/test_util/src/lib.rs +++ b/test_util/src/lib.rs @@ -97,7 +97,7 @@ lazy_static! { pub fn env_vars_for_npm_tests_no_sync_download() -> Vec<(String, String)> { vec![ ("DENO_NODE_COMPAT_URL".to_string(), std_file_url()), - ("DENO_NPM_REGISTRY".to_string(), npm_registry_url()), + ("NPM_CONFIG_REGISTRY".to_string(), npm_registry_url()), ("NO_COLOR".to_string(), "1".to_string()), ] } |