mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import { ICommunicationRepository } from '@app/domain';
|
|
|
|
export const newCommunicationRepositoryMock = (): jest.Mocked<ICommunicationRepository> => {
|
|
return {
|
|
send: jest.fn(),
|
|
broadcast: jest.fn(),
|
|
on: jest.fn(),
|
|
sendServerEvent: jest.fn(),
|
|
};
|
|
};
|