0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 13:38:32 +00:00
renovatebot_renovate/lib/config/migrations/custom/node-migration.spec.ts
2024-05-12 07:00:23 +00:00

27 lines
597 B
TypeScript

import { NodeMigration } from './node-migration';
describe('config/migrations/custom/node-migration', () => {
it('should migrate node to travis', () => {
expect(NodeMigration).toMigrate(
{
node: { enabled: true },
},
{
travis: { enabled: true },
},
);
});
it('should not delete node in case it has more than one property', () => {
expect(NodeMigration).toMigrate(
{
node: { enabled: true, automerge: false },
},
{
node: { automerge: false },
travis: { enabled: true },
},
);
});
});