mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 02:49:01 -07:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
21 lines
549 B
TypeScript
21 lines
549 B
TypeScript
import { ISearchRepository } from '@app/domain';
|
|
|
|
export const newSearchRepositoryMock = (): jest.Mocked<ISearchRepository> => {
|
|
return {
|
|
setup: jest.fn(),
|
|
checkMigrationStatus: jest.fn(),
|
|
importAssets: jest.fn(),
|
|
importAlbums: jest.fn(),
|
|
importFaces: jest.fn(),
|
|
deleteAlbums: jest.fn(),
|
|
deleteAssets: jest.fn(),
|
|
deleteFaces: jest.fn(),
|
|
deleteAllFaces: jest.fn(),
|
|
searchAssets: jest.fn(),
|
|
searchAlbums: jest.fn(),
|
|
vectorSearch: jest.fn(),
|
|
explore: jest.fn(),
|
|
searchFaces: jest.fn(),
|
|
};
|
|
};
|