-
Notifications
You must be signed in to change notification settings - Fork 314
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
Node functional test improvements #9437
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ff835ae
test(node): Remove an incorrect replacement
fviernau 0d77165
test(npm): Rename the `package-lock` project to `project-with-lockfile`
fviernau 14e114e
test(npm): Sort the dependencies of `project-with-lockfile`
fviernau 23bd978
test(yarn): Align a test case name with analog tests for other managers
fviernau d74413f
test(node): Align `project-with-lockfile` dependencies
fviernau 7049492
test(node): Align the metadata of the `project-with-lockfile`
fviernau 205bcf5
feat(yarn2): Support parsing the project's `authors`
fviernau 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
2 changes: 1 addition & 1 deletion
2
...etic/npm/package-lock-expected-output.yml → ...project-with-lockfile-expected-output.yml
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
project: | ||
id: "PNPM::pnpm-package-with-lockfile:1.0.0" | ||
definition_file_path: "<REPLACE_DEFINITION_FILE_PATH>" | ||
authors: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Commit message typo in "comparision". |
||
- "The Author" | ||
declared_licenses: | ||
- "Apache-2.0" | ||
declared_licenses_processed: | ||
|
@@ -71,6 +73,7 @@ project: | |
- id: "NPM::promise:7.3.1" | ||
dependencies: | ||
- id: "NPM::asap:2.0.6" | ||
- id: "NPM::web-animations-js:2.3.2" | ||
- name: "devDependencies" | ||
dependencies: | ||
- id: "NPM::cson:4.1.0" | ||
|
@@ -1140,6 +1143,34 @@ packages: | |
url: "https://github.com/TooTallNate/util-deprecate.git" | ||
revision: "475fb6857cd23fafff20c1be846c1350abf8e6d4" | ||
path: "" | ||
- id: "NPM::web-animations-js:2.3.2" | ||
purl: "pkg:npm/web-animations-js@2.3.2" | ||
declared_licenses: | ||
- "Apache-2.0" | ||
declared_licenses_processed: | ||
spdx_expression: "Apache-2.0" | ||
description: "JavaScript implementation of the Web Animations API" | ||
homepage_url: "https://github.com/web-animations" | ||
binary_artifact: | ||
url: "" | ||
hash: | ||
value: "" | ||
algorithm: "" | ||
source_artifact: | ||
url: "https://registry.npmjs.org/web-animations-js/-/web-animations-js-2.3.2.tgz" | ||
hash: | ||
value: "a51963a359c543f97b47c7d4bc2d811f9fc9e153" | ||
algorithm: "SHA-1" | ||
vcs: | ||
type: "Git" | ||
url: "https://github.com/web-animations/web-animations-js.git" | ||
revision: "64d83730282fdbce733460d44be52c132d6c04e9" | ||
path: "" | ||
vcs_processed: | ||
type: "Git" | ||
url: "https://github.com/web-animations/web-animations-js.git" | ||
revision: "64d83730282fdbce733460d44be52c132d6c04e9" | ||
path: "" | ||
- id: "NPM:@types:node:18.0.6" | ||
purl: "pkg:npm/%40types/node@18.0.6" | ||
declared_licenses: | ||
|
This file contains 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
9 changes: 9 additions & 0 deletions
9
...gers/node/src/funTest/assets/projects/synthetic/pnpm/project-with-lockfile/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
Please explain in the commit message why these are reordered, and to which order. I guess to have alphabetical ordering, but why is that important here? Just for readability / consistency, or something else?
Maybe instead of "re-order" simply say "sort" to make things clearer?