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