mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 13:26:47 +01:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import { IAlbumRepository } from '../src';
|
|
|
|
export const newAlbumRepositoryMock = (): jest.Mocked<IAlbumRepository> => {
|
|
return {
|
|
getByIds: jest.fn(),
|
|
deleteAll: jest.fn(),
|
|
getAll: jest.fn(),
|
|
save: jest.fn(),
|
|
};
|
|
};
|