mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
09bf1c9175
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import { IMoveRepository } from '@app/domain';
|
|
|
|
export const newMoveRepositoryMock = (): jest.Mocked<IMoveRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
getByEntity: jest.fn(),
|
|
update: jest.fn(),
|
|
delete: jest.fn(),
|
|
};
|
|
};
|