mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
84f7ca855a
move domain interfaces
14 lines
403 B
TypeScript
14 lines
403 B
TypeScript
import { ISearchRepository } from 'src/interfaces/search.repository';
|
|
|
|
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(),
|
|
getAssetsByCity: jest.fn(),
|
|
deleteAllSearchEmbeddings: jest.fn(),
|
|
};
|
|
};
|