mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
fa0913120d
* feat: search peoples * fix: responsive design * use existing count * generate sql file * fix: tests * remove visible people * fix: merge, hide... * use component * fix: linter * chore: regenerate api * fix: change name when searching for a face * save search * remove duplicate * use enums for query parameters * fix: increase to 20 for the local search * use constants * simplify * fix: number of people more visible * fix: merge * fix: search * fix: loading spinner position * pr feedback
33 lines
772 B
TypeScript
33 lines
772 B
TypeScript
import { IPersonRepository } from '@app/domain';
|
|
|
|
export const newPersonRepositoryMock = (): jest.Mocked<IPersonRepository> => {
|
|
return {
|
|
getById: jest.fn(),
|
|
getAll: jest.fn(),
|
|
getAllForUser: jest.fn(),
|
|
getAssets: jest.fn(),
|
|
getAllWithoutFaces: jest.fn(),
|
|
|
|
getByName: jest.fn(),
|
|
|
|
create: jest.fn(),
|
|
update: jest.fn(),
|
|
deleteAll: jest.fn(),
|
|
delete: jest.fn(),
|
|
deleteAllFaces: jest.fn(),
|
|
|
|
getStatistics: jest.fn(),
|
|
getAllFaces: jest.fn(),
|
|
getFacesByIds: jest.fn(),
|
|
getRandomFace: jest.fn(),
|
|
|
|
reassignFaces: jest.fn(),
|
|
createFaces: jest.fn(),
|
|
getFaces: jest.fn(),
|
|
reassignFace: jest.fn(),
|
|
getFaceById: jest.fn(),
|
|
getFaceByIdWithAssets: jest.fn(),
|
|
getNumberOfPeople: jest.fn(),
|
|
};
|
|
};
|