mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 10:58:53 -07:00
11 lines
235 B
TypeScript
11 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(),
|
|
};
|
|
};
|