mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
13 lines
341 B
TypeScript
13 lines
341 B
TypeScript
|
import { Container } from 'typedi';
|
||
|
import { mock } from 'jest-mock-extended';
|
||
|
import type { DeepPartial } from 'ts-essentials';
|
||
|
|
||
|
export const mockInstance = <T>(
|
||
|
ctor: new (...args: unknown[]) => T,
|
||
|
data: DeepPartial<T> | undefined = undefined,
|
||
|
) => {
|
||
|
const instance = mock<T>(data);
|
||
|
Container.set(ctor, instance);
|
||
|
return instance;
|
||
|
};
|