mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-19 13:26:04 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { IFaceRepository } from '../src';
|
|
|
|
export const newFaceRepositoryMock = (): jest.Mocked<IFaceRepository> => {
|
|
return {
|
|
getAll: jest.fn(),
|
|
getByIds: jest.fn(),
|
|
create: jest.fn(),
|
|
};
|
|
};
|