mirror of
https://github.com/immich-app/immich.git
synced 2024-12-23 02:06:15 +02:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
|
import { IActivityRepository } from '@app/domain';
|
||
|
|
||
|
export const newActivityRepositoryMock = (): jest.Mocked<IActivityRepository> => {
|
||
|
return {
|
||
|
search: jest.fn(),
|
||
|
create: jest.fn(),
|
||
|
delete: jest.fn(),
|
||
|
getStatistics: jest.fn(),
|
||
|
};
|
||
|
};
|