mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
22 lines
426 B
Text
22 lines
426 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`logger/config-serializer redacts sensitive fields 1`] = `
|
|
Object {
|
|
"githubAppKey": "***********",
|
|
"nottoken": "b",
|
|
"token": "***********",
|
|
}
|
|
`;
|
|
|
|
exports[`logger/config-serializer squashes templates 1`] = `
|
|
Object {
|
|
"nottoken": "b",
|
|
"prBody": "[Template]",
|
|
}
|
|
`;
|
|
|
|
exports[`logger/config-serializer suppresses content 1`] = `
|
|
Object {
|
|
"content": "[content]",
|
|
}
|
|
`;
|