mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
import { BinarySourceMigration } from './binary-source-migration';
|
|
|
|
describe('config/migrations/custom/binary-source-migration', () => {
|
|
it('should migrate "auto" to "global"', () => {
|
|
expect(BinarySourceMigration).toMigrate(
|
|
{
|
|
binarySource: 'auto',
|
|
},
|
|
{
|
|
binarySource: 'global',
|
|
},
|
|
);
|
|
});
|
|
});
|