0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-11 13:48:55 +00:00
renovatebot_renovate/lib/config/migrations/custom/package-name-migration.spec.ts
2023-11-07 15:50:29 +00:00

14 lines
336 B
TypeScript

import { PackageNameMigration } from './package-name-migration';
describe('config/migrations/custom/package-name-migration', () => {
it('should migrate value to array', () => {
expect(PackageNameMigration).toMigrate(
{
packageName: 'test',
},
{
packageNames: ['test'],
},
);
});
});