renovate/lib/workers/repository/result.spec.ts

18 lines
420 B
TypeScript
Raw Normal View History

2020-03-05 20:57:24 +00:00
import { RenovateConfig, getConfig } from '../../../test/util';
2020-05-01 16:03:48 +00:00
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();
});
});
});