mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 12:05:48 +00:00
31 lines
944 B
Text
31 lines
944 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`authutil tests Appends trailing slash to registry 1`] = `
|
|
"//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN}
|
|
registry=https://registry.npmjs.org/
|
|
always-auth=false"
|
|
`;
|
|
|
|
exports[`authutil tests Automatically configures GPR scope 1`] = `
|
|
"npm.pkg.github.com/:_authToken=\${NODE_AUTH_TOKEN}
|
|
@ownername:registry=npm.pkg.github.com/
|
|
always-auth=false"
|
|
`;
|
|
|
|
exports[`authutil tests Configures scoped npm registries 1`] = `
|
|
"//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN}
|
|
@myscope:registry=https://registry.npmjs.org/
|
|
always-auth=false"
|
|
`;
|
|
|
|
exports[`authutil 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[`authutil tests Sets up npmrc for npmjs 1`] = `
|
|
"//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN}
|
|
registry=https://registry.npmjs.org/
|
|
always-auth=false"
|
|
`;
|