Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
setup-node/__tests__/__snapshots__/authutil.test.ts.snap
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (26 sloc)
949 Bytes
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
// Jest Snapshot v1, https://goo.gl/fbAQLP | |
exports[`installer tests Appends trailing slash to registry 1`] = ` | |
"//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN} | |
registry=https://registry.npmjs.org/ | |
always-auth=false" | |
`; | |
exports[`installer tests Automatically configures GPR scope 1`] = ` | |
"npm.pkg.github.com/:_authToken=\${NODE_AUTH_TOKEN} | |
@ownername:registry=npm.pkg.github.com/ | |
always-auth=false" | |
`; | |
exports[`installer tests Configures scoped npm registries 1`] = ` | |
"//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN} | |
@myscope:registry=https://registry.npmjs.org/ | |
always-auth=false" | |
`; | |
exports[`installer tests Sets up npmrc for always-auth true 1`] = ` | |
"//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN} | |
registry=https://registry.npmjs.org/ | |
always-auth=true" | |
`; | |
exports[`installer tests Sets up npmrc for npmjs 1`] = ` | |
"//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN} | |
registry=https://registry.npmjs.org/ | |
always-auth=false" | |
`; |