mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 18:42:17 -07: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(),
|
||
|
};
|
||
|
};
|