1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-06 03:46:47 +01:00
immich/server/test/repositories/system-metadata.repository.mock.ts
2024-03-21 06:59:49 -05:00

8 lines
241 B
TypeScript

import { ISystemMetadataRepository } from 'src/interfaces/system-metadata.interface';
export const newSystemMetadataRepositoryMock = (): jest.Mocked<ISystemMetadataRepository> => {
return {
get: jest.fn(),
set: jest.fn(),
};
};