mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
11 lines
272 B
TypeScript
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([]);
|
|
});
|
|
});
|