mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 21:36:46 +01:00
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
|
import { IAssetRepository } from '../src';
|
||
|
|
||
|
export const newAssetRepositoryMock = (): jest.Mocked<IAssetRepository> => {
|
||
|
return {
|
||
|
getAll: jest.fn(),
|
||
|
deleteAll: jest.fn(),
|
||
|
save: jest.fn(),
|
||
|
findLivePhotoMatch: jest.fn(),
|
||
|
};
|
||
|
};
|