renovate/lib/workers/repository/result.spec.ts
2020-05-18 14:33:44 +02:00

17 lines
420 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();
});
});
});