mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import { ISmartInfoRepository } from '@app/domain';
|
|
|
|
export const newSmartInfoRepositoryMock = (): jest.Mocked<ISmartInfoRepository> => {
|
|
return {
|
|
init: jest.fn(),
|
|
searchCLIP: jest.fn(),
|
|
searchFaces: jest.fn(),
|
|
upsert: jest.fn(),
|
|
};
|
|
};
|