mirror of https://github.com/renovatebot/renovate
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
import * as manager from '../../modules/manager';
|
|
import * as platform from '../../modules/platform';
|
|
import { getOptions } from '.';
|
|
|
|
jest.unmock('../../modules/platform');
|
|
|
|
describe('config/options/index', () => {
|
|
it('test manager should have no defaultConfig', () => {
|
|
jest.doMock('../../modules/manager', () => ({
|
|
getManagers: jest.fn(() => new Map().set('testManager', {})),
|
|
}));
|
|
|
|
const opts = getOptions();
|
|
expect(opts.filter((o) => o.name === 'testManager')).toEqual([]);
|
|
});
|
|
|
|
it('supportedManagers should have valid names', () => {
|
|
const opts = getOptions();
|
|
const managerList = Array.from(manager.getManagers().keys());
|
|
|
|
opts
|
|
.filter((option) => option.supportedManagers)
|
|
.forEach((option) => {
|
|
expect(option.supportedManagers).toBeNonEmptyArray();
|
|
for (const item of option.supportedManagers!) {
|
|
expect(managerList).toContain(item);
|
|
}
|
|
});
|
|
});
|
|
|
|
it('supportedPlatforms should have valid names', () => {
|
|
const opts = getOptions();
|
|
const platformList = Array.from(platform.getPlatforms().keys());
|
|
|
|
opts
|
|
.filter((option) => option.supportedPlatforms)
|
|
.forEach((option) => {
|
|
expect(option.supportedPlatforms).toBeNonEmptyArray();
|
|
for (const item of option.supportedPlatforms!) {
|
|
expect(platformList).toContain(item);
|
|
}
|
|
});
|
|
});
|
|
});
|