mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
f69ddcd796
## Review / Merge checklist - [x] PR title and summary are descriptive
14 lines
375 B
TypeScript
14 lines
375 B
TypeScript
import { Container } from 'typedi';
|
|
import { mock } from 'jest-mock-extended';
|
|
import type { DeepPartial } from 'ts-essentials';
|
|
import type { Class } from 'n8n-core';
|
|
|
|
export const mockInstance = <T>(
|
|
serviceClass: Class<T>,
|
|
data: DeepPartial<T> | undefined = undefined,
|
|
) => {
|
|
const instance = mock<T>(data);
|
|
Container.set(serviceClass, instance);
|
|
return instance;
|
|
};
|