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
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import { ISystemMetadataRepository } from 'src/domain/repositories/system-metadata.repository';
|
|
|
|
export const newSystemMetadataRepositoryMock = (): jest.Mocked<ISystemMetadataRepository> => {
|
|
return {
|
|
get: jest.fn(),
|
|
set: jest.fn(),
|
|
};
|
|
};
|