mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 14:36:25 +00:00
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
// Check for missing or pending http mocks
|
|
import './http-mock';
|
|
|
|
jest.mock('../lib/platform', () => ({
|
|
platform: jest.createMockFromModule('../lib/platform/github'),
|
|
initPlatform: jest.fn(),
|
|
getPlatformList: jest.fn(),
|
|
}));
|
|
jest.mock('../lib/logger');
|