mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-26 14:57:42 +00:00
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
import { IMoveRepository } from 'src/interfaces/move.interface';
|
|
|
|
export const newMoveRepositoryMock = (): jest.Mocked<IMoveRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
getByEntity: jest.fn(),
|
|
update: jest.fn(),
|
|
delete: jest.fn(),
|
|
};
|
|
};
|