mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
|
import { IEventRepository } from 'src/interfaces/event.interface';
|
||
|
|
||
|
export const newEventRepositoryMock = (): jest.Mocked<IEventRepository> => {
|
||
|
return {
|
||
|
clientSend: jest.fn(),
|
||
|
clientBroadcast: jest.fn(),
|
||
|
serverSend: jest.fn(),
|
||
|
serverSendAsync: jest.fn(),
|
||
|
};
|
||
|
};
|