mirror of
https://github.com/KevinMidboe/immich.git
synced 2026-01-26 02:55:49 +00: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(),
|
|
};
|
|
};
|