immich/server/test/repositories/album.repository.mock.ts

25 lines
636 B
TypeScript
Raw Normal View History

import { IAlbumRepository } from '@app/domain';
export const newAlbumRepositoryMock = (): jest.Mocked<IAlbumRepository> => {
return {
getById: jest.fn(),
getByIds: jest.fn(),
getByAssetId: jest.fn(),
getAssetCountForIds: jest.fn(),
getInvalidThumbnail: jest.fn(),
getOwned: jest.fn(),
getShared: jest.fn(),
getNotShared: jest.fn(),
restoreAll: jest.fn(),
softDeleteAll: jest.fn(),
deleteAll: jest.fn(),
getAll: jest.fn(),
removeAsset: jest.fn(),
hasAsset: jest.fn(),
2023-05-24 19:10:45 -07:00
create: jest.fn(),
update: jest.fn(),
2023-05-26 06:04:09 -07:00
delete: jest.fn(),
updateThumbnails: jest.fn(),
};
};