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/lsp.rs | |
parent | 1a472ad06bdc55b1fa0c0f26ca2d24d709f2e0c3 (diff) |
feat(npm): add support for `NPM_CONFIG_REGISTRY` (#16980)
Diffstat (limited to 'test_util/src/lsp.rs')
-rw-r--r-- | test_util/src/lsp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/src/lsp.rs b/test_util/src/lsp.rs index b2c28268e..c1e4c875a 100644 --- a/test_util/src/lsp.rs +++ b/test_util/src/lsp.rs @@ -234,7 +234,7 @@ impl LspClient { command .env("DENO_DIR", deno_dir.path()) .env("DENO_NODE_COMPAT_URL", std_file_url()) - .env("DENO_NPM_REGISTRY", npm_registry_url()) + .env("NPM_CONFIG_REGISTRY", npm_registry_url()) .arg("lsp") .stdin(Stdio::piped()) .stdout(Stdio::piped()); |