mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 00:56:26 +00:00
35 lines
725 B
Text
35 lines
725 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`config/migrate-validate migrateAndValidate() handles empty 1`] = `
|
|
Object {
|
|
"errors": Array [],
|
|
"warnings": Array [],
|
|
}
|
|
`;
|
|
|
|
exports[`config/migrate-validate migrateAndValidate() handles invalid 1`] = `
|
|
Object {
|
|
"errors": Array [
|
|
Object {
|
|
"message": "Invalid configuration option: foo",
|
|
"topic": "Configuration Error",
|
|
},
|
|
],
|
|
"foo": "none",
|
|
"warnings": Array [],
|
|
}
|
|
`;
|
|
|
|
exports[`config/migrate-validate migrateAndValidate() handles migration 1`] = `
|
|
Object {
|
|
"automerge": false,
|
|
"errors": Array [],
|
|
"warnings": Array [],
|
|
}
|
|
`;
|
|
|
|
exports[`config/migrate-validate migrateAndValidate() isOnboarded 1`] = `
|
|
Object {
|
|
"errors": Array [],
|
|
}
|
|
`;
|