mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-16 06:11:41 -07:00
51 lines
1.8 KiB
TypeScript
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();
|
|
});
|
|
});
|