import * as React from 'react'; import {render} from '@testing-library/react'; import MapInfoPanel from './mapInfoPanel'; import {LocalizedComponent} from '../test/testHelpers'; describe('simulate app starting up, no click on map', () => { const {asFragment} = render( , ); it('should match the snapshot of the MapIntroduction component', () => { expect(asFragment()).toMatchSnapshot(); }); }); describe('simulate a click on map', () => { const featureProperties = { 'GEOID10': '350459430003', 'Total population': 960, 'GEOID10 (percentile)': 0.5784380914343289, 'Housing burden (percent) (percentile)': 0.10073235017829946, 'Total population (percentile)': 0.2985685303608629, 'Linguistic isolation (percent) (percentile)': 0.9623469180109516, 'Percent of households in linguistic isolation (percentile)': 0.9230800651740774, 'Poverty (Less than 200% of federal poverty line) (percentile)': 0.947202643271775, 'Percentage of individuals age 25 or over with less than high school degree (percentile)': 0.7804232684164424, 'Unemployed civilians (percent) (percentile)': 0.9873599918675144, 'Score D (percentile)': 0.9321799276549586, }; const selectedFeatureId = 345; const {asFragment} = render( , ); it('hould match the snapshot of the MapInfoPanel component', () => { expect(asFragment()).toMatchSnapshot(); }); });