9a099b3fa7
This commit also removes our older testing libraries like Enzyme and React Test Renderer.
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
'use strict';
|
|
|
|
import { __clear as clearApiMocks } from '../__mocks__/api';
|
|
|
|
// API mocking
|
|
jest.mock('soapbox/api');
|
|
afterEach(() => clearApiMocks());
|
|
|
|
// Mock external dependencies
|
|
jest.mock('uuid', () => ({ v4: jest.fn(() => 1) }));
|