import { GeorouterPort } from '@modules/ad/core/application/ports/georouter.port'; export const bareMockGeorouter: GeorouterPort = { getRoute: jest.fn(), }; export const simpleMockGeorouter: GeorouterPort = { getRoute: jest.fn().mockImplementation(() => ({ distance: 350101, duration: 14422, fwdAzimuth: 273, backAzimuth: 93, distanceAzimuth: 336544, points: [], })), };