mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
import { IEventRepository } from 'src/interfaces/event.interface';
|
|
import { Mocked, vitest } from 'vitest';
|
|
|
|
export const newEventRepositoryMock = (): Mocked<IEventRepository> => {
|
|
return {
|
|
setup: vitest.fn(),
|
|
emit: vitest.fn() as any,
|
|
clientSend: vitest.fn() as any,
|
|
clientBroadcast: vitest.fn() as any,
|
|
serverSend: vitest.fn(),
|
|
};
|
|
};
|