mirror of
https://github.com/immich-app/immich.git
synced 2026-03-04 09:57:33 +03:00
9 lines
251 B
TypeScript
9 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(),
|
|
};
|
|
};
|