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