mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import { IPartnerRepository } from '@app/domain';
|
|
|
|
export const newPartnerRepositoryMock = (): jest.Mocked<IPartnerRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
remove: jest.fn(),
|
|
getAll: jest.fn(),
|
|
get: jest.fn(),
|
|
update: jest.fn(),
|
|
};
|
|
};
|