import { render, screen } from '@testing-library/react'; import { MapModal } from '../../../src/visits/helpers/MapModal'; import type { CityStats } from '../../../src/visits/types'; describe('', () => { const toggle = jest.fn(); const zaragozaLat = 41.6563497; const zaragozaLong = -0.876566; const newYorkLat = 40.730610; const newYorkLong = -73.935242; const locations: CityStats[] = [ { cityName: 'Zaragoza', count: 54, latLong: [zaragozaLat, zaragozaLong], }, { cityName: 'New York', count: 7, latLong: [newYorkLat, newYorkLong], }, ]; it('renders expected map', () => { render(); expect(screen.getByRole('dialog')).toMatchSnapshot(); }); });