mirror of
https://github.com/immich-app/immich.git
synced 2025-01-29 17:43:42 +02:00
12 lines
287 B
TypeScript
12 lines
287 B
TypeScript
import { IMetadataRepository } from '@app/domain';
|
|
|
|
export const newMetadataRepositoryMock = (): jest.Mocked<IMetadataRepository> => {
|
|
return {
|
|
deleteCache: jest.fn(),
|
|
getExifTags: jest.fn(),
|
|
init: jest.fn(),
|
|
teardown: jest.fn(),
|
|
reverseGeocode: jest.fn(),
|
|
};
|
|
};
|