mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 03:19:01 -07:00
c74fba483d
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
import { IAssetRepository } from '../src';
|
|
|
|
export const newAssetRepositoryMock = (): jest.Mocked<IAssetRepository> => {
|
|
return {
|
|
getByIds: jest.fn(),
|
|
getWithout: jest.fn(),
|
|
getFirstAssetForAlbumId: jest.fn(),
|
|
getAll: jest.fn(),
|
|
deleteAll: jest.fn(),
|
|
save: jest.fn(),
|
|
findLivePhotoMatch: jest.fn(),
|
|
};
|
|
};
|