mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
28 lines
811 B
TypeScript
28 lines
811 B
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import { MapModal } from '../../../src/visits/helpers/MapModal';
|
|
import type { CityStats } from '../../../src/visits/types';
|
|
|
|
describe('<MapModal />', () => {
|
|
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(<MapModal toggle={toggle} isOpen title="Foobar" locations={locations} />);
|
|
expect(screen.getByRole('dialog')).toMatchSnapshot();
|
|
});
|
|
});
|