renovate/lib/workers/repository/result.spec.ts
2022-04-12 14:49:49 +00:00

18 lines
421 B
TypeScript

import { RenovateConfig, getConfig } from '../../../test/util';
import { processResult } from './result';
let config: RenovateConfig;
beforeEach(() => {
jest.resetAllMocks();
config = getConfig();
});
describe('workers/repository/result', () => {
describe('processResult()', () => {
it('runs', () => {
const result = processResult(config, 'done');
expect(result).not.toBeNil();
});
});
});