mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
feat: facial recognition (#2180)
This commit is contained in:
9
server/libs/domain/test/face.repository.mock.ts
Normal file
9
server/libs/domain/test/face.repository.mock.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { IFaceRepository } from '../src';
|
||||
|
||||
export const newFaceRepositoryMock = (): jest.Mocked<IFaceRepository> => {
|
||||
return {
|
||||
getAll: jest.fn(),
|
||||
getByIds: jest.fn(),
|
||||
create: jest.fn(),
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user