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