1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-08 12:56:48 +01:00
immich/server/libs/domain/test/communication.repository.mock.ts

8 lines
185 B
TypeScript
Raw Normal View History

import { ICommunicationRepository } from '../src';
export const newCommunicationRepositoryMock = (): jest.Mocked<ICommunicationRepository> => {
return {
send: jest.fn(),
};
};