mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
b588a87d4a
rename domain repositories
8 lines
241 B
TypeScript
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(),
|
|
};
|
|
};
|