mirror of
https://github.com/immich-app/immich.git
synced 2025-01-17 01:06:46 +01:00
84f7ca855a
move domain interfaces
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import { ISystemMetadataRepository } from 'src/interfaces/system-metadata.repository';
|
|
|
|
export const newSystemMetadataRepositoryMock = (): jest.Mocked<ISystemMetadataRepository> => {
|
|
return {
|
|
get: jest.fn(),
|
|
set: jest.fn(),
|
|
};
|
|
};
|