j40-cejst-2/client/src/components/mapInfoPanel.test.tsx
TomNUSDS 5c0e6e8096
Minor edits to copy - Fixes #1572 (#1574)
* Minor edits
* Fix `intl:compile-en` and the `intl:extract`
2022-04-19 10:21:59 -07:00

51 lines
1.8 KiB
TypeScript

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(
<LocalizedComponent>
<MapInfoPanel
className={'someClassName'}
featureProperties={undefined}
selectedFeatureId={undefined}
/>
</LocalizedComponent>,
);
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(
<LocalizedComponent>
<MapInfoPanel
className={'J40Map-module--mapInfoPanel--8Ap7p'}
featureProperties={featureProperties}
selectedFeatureId={selectedFeatureId}
/>
</LocalizedComponent>,
);
it('hould match the snapshot of the MapInfoPanel component', () => {
expect(asFragment()).toMatchSnapshot();
});
});