mirror of
https://github.com/immich-app/immich.git
synced 2025-01-11 06:10:28 +02:00
12 lines
270 B
TypeScript
12 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(),
|
|
};
|
|
};
|