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

11 lines
272 B
TypeScript

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