mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
import { RebaseConflictedPrs } from './rebase-conflicted-prs-migration';
|
|
|
|
describe('config/migrations/custom/rebase-conflicted-prs-migration', () => {
|
|
it('should migrate false', () => {
|
|
expect(RebaseConflictedPrs).toMigrate(
|
|
{
|
|
rebaseConflictedPrs: false,
|
|
},
|
|
{
|
|
rebaseWhen: 'never',
|
|
},
|
|
);
|
|
});
|
|
});
|