// __mocks__/leaflet.js const L = { divIcon: jest.fn(() => new L.DivIcon()), DivIcon: function () { this.options = { className: "custom-start-icon", html: ` `, iconSize: [18, 18], iconAnchor: [9, 10], }; }, }; L.DivIcon.prototype = { constructor: L.DivIcon, }; module.exports = L;