renovate/lib/config/validation-helpers/managers.spec.ts

12 lines
297 B
TypeScript

import { check } from './managers';
describe('config/validation-helpers/managers', () => {
it('should have no errors', () => {
const res = check({
resolvedRule: { matchManagers: ['npm', 'regex', 'custom.regex'] },
currentPath: '',
});
expect(res).toEqual([]);
});
});