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