mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
30f499cf2e
update server to use absolute import paths
12 lines
332 B
TypeScript
12 lines
332 B
TypeScript
import { ISharedLinkRepository } from 'src/domain/repositories/shared-link.repository';
|
|
|
|
export const newSharedLinkRepositoryMock = (): jest.Mocked<ISharedLinkRepository> => {
|
|
return {
|
|
getAll: jest.fn(),
|
|
get: jest.fn(),
|
|
getByKey: jest.fn(),
|
|
create: jest.fn(),
|
|
remove: jest.fn(),
|
|
update: jest.fn(),
|
|
};
|
|
};
|