mirror of
https://github.com/immich-app/immich.git
synced 2024-12-15 12:09:44 +02:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
11 lines
240 B
TypeScript
11 lines
240 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(),
|
|
};
|
|
};
|