mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
import { IPartnerRepository } from 'src/domain/repositories/partner.repository';
|
|
|
|
export const newPartnerRepositoryMock = (): jest.Mocked<IPartnerRepository> => {
|
|
return {
|
|
create: jest.fn(),
|
|
remove: jest.fn(),
|
|
getAll: jest.fn(),
|
|
get: jest.fn(),
|
|
update: jest.fn(),
|
|
};
|
|
};
|