mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
30f499cf2e
update server to use absolute import paths
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
import { IActivityRepository } from 'src/domain/repositories/activity.repository';
|
|
|
|
export const newActivityRepositoryMock = (): jest.Mocked<IActivityRepository> => {
|
|
return {
|
|
search: jest.fn(),
|
|
create: jest.fn(),
|
|
delete: jest.fn(),
|
|
getStatistics: jest.fn(),
|
|
};
|
|
};
|