mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 10:58:53 -07:00
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
|
import { ICommunicationRepository } from '../src';
|
||
|
|
||
|
export const newCommunicationRepositoryMock = (): jest.Mocked<ICommunicationRepository> => {
|
||
|
return {
|
||
|
send: jest.fn(),
|
||
|
};
|
||
|
};
|