-
Notifications
You must be signed in to change notification settings - Fork 341
Add test for npm-registry-utils HTTP proxy support (Node.js 24+) #9902
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Copilot
wants to merge
12
commits into
main
Choose a base branch
from
copilot/add-test-npm-registry-utils
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+144
−0
Draft
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
361bc5d
Initial plan
Copilot 1c31f2d
Add e2e test for npm-registry-utils HTTP proxy support
Copilot 63e6f85
Address review: revert registry URL override, keep --use-env-proxy, u…
Copilot f059023
Apply suggestion from @timotheeguerin
timotheeguerin 6475205
Fix proxy test: use non-existent hostname + local mock registry so te…
Copilot 7a5995a
Move proxy test from e2e to regular test suite so it runs on multiple…
Copilot 4096173
Merge main branch changes: incorporate TYPESPEC_NPM_REGISTRY env var …
Copilot faabc79
Merge main branch: combine TYPESPEC_NPM_REGISTRY tests with proxy tes…
Copilot 63e40f7
Merge origin/main: resolve add/add conflict in npm-registry-utils.tes…
Copilot dd0b448
Merge branch 'main' into copilot/add-test-npm-registry-utils
Copilot eb91a00
test merge commit
Copilot ab66eb6
Fix changeset: remove test text from changeset description
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
.chronus/changes/copilot-add-test-npm-registry-utils-proxy-2026-03-04-13-19-05.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| changeKind: fix | ||
| packages: | ||
| - "@typespec/compiler" | ||
| --- | ||
|
|
||
| Add test to verify `fetchPackageManifest` from `npm-registry-utils` works through an HTTP proxy using Node.js 24's `--use-env-proxy` flag. |
137 changes: 137 additions & 0 deletions
137
packages/compiler/test/package-manager/npm-registry-utils.test.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot can this be done without being an e2e test?, the problem is we only run e2e test on the latest node
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved to
test/package-manager/npm-registry-utils.test.tsin 7a5995a — it's now a regular test (.test.ts) that runs withpnpm teston all Node versions, not just the latest.