mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
30f499cf2e
update server to use absolute import paths
10 lines
285 B
TypeScript
10 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(),
|
|
};
|
|
};
|