mirror of
https://github.com/immich-app/immich.git
synced 2024-12-27 10:58:13 +02:00
b588a87d4a
rename domain repositories
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(),
|
|
};
|
|
};
|