mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46:25 +00:00
35 lines
641 B
Text
35 lines
641 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`util/host-rules add() supports baseUrl-only 1`] = `
|
|
Object {
|
|
"password": "pass1",
|
|
"username": "user1",
|
|
}
|
|
`;
|
|
|
|
exports[`util/host-rules find() matches on endpoint subresource 1`] = `
|
|
Object {
|
|
"token": "abc",
|
|
}
|
|
`;
|
|
|
|
exports[`util/host-rules find() matches on hostName 1`] = `
|
|
Object {
|
|
"token": "abc",
|
|
}
|
|
`;
|
|
|
|
exports[`util/host-rules find() matches on hostType 1`] = `
|
|
Object {
|
|
"token": "abc",
|
|
}
|
|
`;
|
|
|
|
exports[`util/host-rules find() needs exact host matches 1`] = `Object {}`;
|
|
|
|
exports[`util/host-rules find() returns hosts 1`] = `
|
|
Array [
|
|
"nuget.local",
|
|
"my.local.registry",
|
|
]
|
|
`;
|