mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
84f7ca855a
move domain interfaces
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import { IMoveRepository } from 'src/interfaces/move.repository';
|
|
|
|
export const newMoveRepositoryMock = (): jest.Mocked<IMoveRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
getByEntity: jest.fn(),
|
|
update: jest.fn(),
|
|
delete: jest.fn(),
|
|
};
|
|
};
|