0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 13:38:32 +00:00
renovatebot_renovate/lib/config/migrations/custom/path-rules-migration.spec.ts
2023-11-07 15:50:29 +00:00

87 lines
1.7 KiB
TypeScript

import { PathRulesMigration } from './path-rules-migration';
describe('config/migrations/custom/path-rules-migration', () => {
it('should migrate to packageRules', () => {
expect(PathRulesMigration).toMigrate(
{
pathRules: [
{
paths: ['examples/**'],
extends: ['foo'],
},
],
},
{
packageRules: [
{
paths: ['examples/**'],
extends: ['foo'],
},
],
},
);
});
it('should rewrite packageRules when it is not array', () => {
expect(PathRulesMigration).toMigrate(
{
packageRules: 'test',
pathRules: [
{
paths: ['examples/**'],
extends: ['foo'],
},
],
} as any,
{
packageRules: [
{
paths: ['examples/**'],
extends: ['foo'],
},
],
},
);
});
it('should not migrate non array value', () => {
expect(PathRulesMigration).toMigrate(
{
pathRules: 'test',
},
{},
);
});
it('should concat with existing package rules', () => {
expect(PathRulesMigration).toMigrate(
{
pathRules: [
{
paths: ['examples/**'],
extends: ['foo'],
},
],
packageRules: [
{
packageNames: ['guava'],
versionScheme: 'maven',
},
],
},
{
packageRules: [
{
packageNames: ['guava'],
versionScheme: 'maven',
},
{
paths: ['examples/**'],
extends: ['foo'],
},
],
},
);
});
});