mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 18:42:17 -07:00
11 lines
256 B
TypeScript
11 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(),
|
|
};
|
|
};
|