Files
immich/server/test/repositories/metadata.repository.mock.ts
T
2023-11-21 21:16:40 -05:00

13 lines
310 B
TypeScript

import { IMetadataRepository } from '@app/domain';
export const newMetadataRepositoryMock = (): jest.Mocked<IMetadataRepository> => {
return {
deleteCache: jest.fn(),
init: jest.fn(),
teardown: jest.fn(),
reverseGeocode: jest.fn(),
readTags: jest.fn(),
writeTags: jest.fn(),
};
};