Files
2025-08-06 13:49:11 +08:00

12 lines
261 B
JavaScript

/* global jest: true */
const geolocation = {
setRNConfiguration: jest.fn(() => {}),
getCurrentPosition: jest.fn(() => {}),
watchPosition: jest.fn(() => {}),
clearWatch: jest.fn(() => {}),
stopObserving: jest.fn(() => {}),
};
export default geolocation;