mirror of https://github.com/renovatebot/renovate
31 lines
675 B
TypeScript
31 lines
675 B
TypeScript
import { EnabledManagersMigration } from './enabled-managers-migration';
|
|
|
|
describe('config/migrations/custom/enabled-managers-migration', () => {
|
|
it('migrates', () => {
|
|
expect(EnabledManagersMigration).toMigrate(
|
|
{
|
|
enabledManagers: ['test1', 'yarn', 'test2', 'regex', 'custom.regex'],
|
|
},
|
|
{
|
|
enabledManagers: [
|
|
'test1',
|
|
'npm',
|
|
'test2',
|
|
'custom.regex',
|
|
'custom.regex',
|
|
],
|
|
},
|
|
);
|
|
|
|
// coverage
|
|
expect(EnabledManagersMigration).not.toMigrate(
|
|
{
|
|
enabledManagers: undefined,
|
|
},
|
|
{
|
|
enabledManagers: undefined,
|
|
},
|
|
);
|
|
});
|
|
});
|