0
0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-03 02:39:06 +00:00
renovatebot_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([]);
});
});