mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 13:26:47 +01: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(),
|
||
|
};
|
||
|
};
|