mirror of https://github.com/renovatebot/renovate
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { PostUpdateOptionsMigration } from './post-update-options-migration';
|
|
|
|
describe('config/migrations/custom/post-update-options-migration', () => {
|
|
it('should migrate properly', () => {
|
|
expect(PostUpdateOptionsMigration).toMigrate(
|
|
{
|
|
postUpdateOptions: ['gomodTidy', 'gomodNoMassage'],
|
|
},
|
|
{
|
|
postUpdateOptions: ['gomodTidy'],
|
|
},
|
|
);
|
|
});
|
|
});
|