mirror of
https://github.com/immich-app/immich.git
synced 2026-02-28 09:38:43 +03:00
9 lines
241 B
TypeScript
9 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(),
|
|
};
|
|
};
|