mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 01:11:32 +03:00
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
|
|
import { IPartnerRepository } from '../src';
|
||
|
|
|
||
|
|
export const newPartnerRepositoryMock = (): jest.Mocked<IPartnerRepository> => {
|
||
|
|
return {
|
||
|
|
create: jest.fn(),
|
||
|
|
remove: jest.fn(),
|
||
|
|
getAll: jest.fn(),
|
||
|
|
get: jest.fn(),
|
||
|
|
hasAssetAccess: jest.fn(),
|
||
|
|
};
|
||
|
|
};
|