9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
|
|
import 'reflect-metadata';
|
||
|
|
|
||
|
|
global.beforeEach(() => {
|
||
|
|
jest.clearAllMocks();
|
||
|
|
});
|
||
|
|
|
||
|
|
global.afterEach(() => {
|
||
|
|
jest.restoreAllMocks();
|
||
|
|
});
|