mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01: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(),
|
|
};
|
|
};
|