This commit is contained in:
Alex Tran 2023-11-12 21:37:32 -06:00
parent 998dfdaeda
commit 829b964df4
2 changed files with 4 additions and 0 deletions

View file

@ -86,6 +86,8 @@ const updatedConfig = Object.freeze<SystemConfig>({
reverseGeocoding: {
enabled: true,
citiesFileOverride: CitiesFile.CITIES_500,
useMapbox: false,
mapboxAccessToken: '',
},
oauth: {
autoLaunch: true,

View file

@ -5,6 +5,8 @@ export const newMetadataRepositoryMock = (): jest.Mocked<IMetadataRepository> =>
deleteCache: jest.fn(),
getExifTags: jest.fn(),
initLocalGeocoding: jest.fn(),
deinitMapboxGeocoding: jest.fn(),
initMapboxGeocoding: jest.fn(),
teardown: jest.fn(),
reverseGeocode: jest.fn(),
};