mirror of
https://github.com/immich-app/immich.git
synced 2024-12-23 02:06:15 +02:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
|
import { IMetadataRepository } from '@app/domain';
|
||
|
|
||
|
export const newMetadataRepositoryMock = (): jest.Mocked<IMetadataRepository> => {
|
||
|
return {
|
||
|
deleteCache: jest.fn(),
|
||
|
getExifTags: jest.fn(),
|
||
|
init: jest.fn(),
|
||
|
reverseGeocode: jest.fn(),
|
||
|
};
|
||
|
};
|