mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-11 12:05:53 +00:00
10 lines
239 B
TypeScript
10 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(),
|
|
};
|
|
};
|