renovate/lib/config/validation-helpers/managers.spec.ts
2020-05-01 18:03:48 +02:00

9 lines
279 B
TypeScript

import { getName } from '../../../test/util';
import { check } from './managers';
describe(getName(__filename), () => {
it('should have no errors', () => {
const res = check({ resolvedRule: { managers: ['npm'] }, currentPath: '' });
expect(res).toEqual([]);
});
});