mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
12 lines
359 B
TypeScript
12 lines
359 B
TypeScript
import { IgnoreNodeModulesMigration } from './ignore-node-modules-migration';
|
|
|
|
describe('config/migrations/custom/ignore-node-modules-migration', () => {
|
|
it('should migrate to ignorePaths', () => {
|
|
expect(IgnoreNodeModulesMigration).toMigrate(
|
|
{
|
|
ignoreNodeModules: true,
|
|
},
|
|
{ ignorePaths: ['node_modules/'] },
|
|
);
|
|
});
|
|
});
|