mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
11 lines
287 B
TypeScript
11 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(),
|
|
};
|
|
};
|