forked from Cutlery/immich
12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
import { IPartnerRepository } from 'src/interfaces/partner.interface';
|
|
|
|
export const newPartnerRepositoryMock = (): jest.Mocked<IPartnerRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
remove: jest.fn(),
|
|
getAll: jest.fn(),
|
|
get: jest.fn(),
|
|
update: jest.fn(),
|
|
};
|
|
};
|