mirror of
https://github.com/immich-app/immich.git
synced 2024-12-26 10:50:29 +02:00
fb18129843
truncate
14 lines
350 B
TypeScript
14 lines
350 B
TypeScript
import { ISearchRepository } from '@app/domain';
|
|
|
|
export const newSearchRepositoryMock = (): jest.Mocked<ISearchRepository> => {
|
|
return {
|
|
init: jest.fn(),
|
|
searchMetadata: jest.fn(),
|
|
searchSmart: jest.fn(),
|
|
searchFaces: jest.fn(),
|
|
upsert: jest.fn(),
|
|
searchPlaces: jest.fn(),
|
|
deleteAllSearchEmbeddings: jest.fn(),
|
|
};
|
|
};
|