mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
0a22e64799
* move facial recognition service into person service * merge face repository and person repository * fix imports
25 lines
604 B
TypeScript
25 lines
604 B
TypeScript
import { IPersonRepository } from '@app/domain';
|
|
|
|
export const newPersonRepositoryMock = (): jest.Mocked<IPersonRepository> => {
|
|
return {
|
|
getById: jest.fn(),
|
|
getAll: jest.fn(),
|
|
getAllWithoutThumbnail: jest.fn(),
|
|
getAllForUser: jest.fn(),
|
|
getAssets: jest.fn(),
|
|
getAllWithoutFaces: jest.fn(),
|
|
|
|
create: jest.fn(),
|
|
update: jest.fn(),
|
|
deleteAll: jest.fn(),
|
|
delete: jest.fn(),
|
|
|
|
getAllFaces: jest.fn(),
|
|
getFacesByIds: jest.fn(),
|
|
getRandomFace: jest.fn(),
|
|
prepareReassignFaces: jest.fn(),
|
|
reassignFaces: jest.fn(),
|
|
createFace: jest.fn(),
|
|
};
|
|
};
|