mirror of https://github.com/renovatebot/renovate
16 lines
492 B
TypeScript
16 lines
492 B
TypeScript
import * as customManager from '.';
|
|
|
|
describe('modules/manager/custom/index', () => {
|
|
it('getCustomManagerList', () => {
|
|
expect(customManager.customManagerList).toBeArrayOf(expect.toBeString());
|
|
});
|
|
|
|
describe('isCustomManager()', () => {
|
|
it('works', () => {
|
|
expect(customManager.isCustomManager('npm')).toBe(false);
|
|
expect(customManager.isCustomManager('regex')).toBe(true);
|
|
expect(customManager.isCustomManager('custom.regex')).toBe(false);
|
|
});
|
|
});
|
|
});
|