mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
40 lines
782 B
Text
40 lines
782 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`config/massage massageConfig massages npmToken 1`] = `
|
|
Object {
|
|
"npmrc": "//registry.npmjs.org/:_authToken=some-token
|
|
",
|
|
}
|
|
`;
|
|
|
|
exports[`config/massage massageConfig massages packageRules updateTypes 1`] = `
|
|
Object {
|
|
"packageRules": Array [
|
|
Object {
|
|
"packageNames": Array [
|
|
"foo",
|
|
],
|
|
},
|
|
Object {
|
|
"packageNames": Array [
|
|
"foo",
|
|
],
|
|
"semanticCommitType": "feat",
|
|
"updateTypes": Array [
|
|
"minor",
|
|
],
|
|
},
|
|
Object {
|
|
"packageNames": Array [
|
|
"foo",
|
|
],
|
|
"semanticCommitType": "fix",
|
|
"updateTypes": Array [
|
|
"patch",
|
|
],
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`config/massage massageConfig returns empty 1`] = `Object {}`;
|