1
0
mirror of https://github.com/immich-app/immich.git synced 2025-01-11 06:10:28 +02:00
immich/server/libs/domain/test/asset.repository.mock.ts

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(),
};
};