mirror of
https://github.com/immich-app/immich.git
synced 2024-12-03 09:59:32 +02:00
b588a87d4a
rename domain repositories
11 lines
257 B
TypeScript
11 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(),
|
|
};
|
|
};
|