We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6f4eac commit 6aca1a3Copy full SHA for 6aca1a3
src/components/charts/bar/bar.spec.js
@@ -28,13 +28,7 @@ describe('BarGraph component - Custom bar graph', () => {
28
const mouseEnterPropSpy = jest.fn();
29
30
const barGraph = (
31
- <BarGraph
32
- graphData={staggeredData}
33
- graphIndex="year"
34
- valueKeys={['value']}
35
- useCustomBarComponent
36
- mouseEnter={mouseEnterPropSpy}
37
- />
+ <BarGraph graphData={staggeredData} graphIndex="year" valueKeys={['value']} useCustomBarComponent mouseEnter={mouseEnterPropSpy} />
38
);
39
const mouseEnterSpy = jest.spyOn(helpers, 'mouseEnterEvent');
40
const mouseLeaveSpy = jest.spyOn(helpers, 'mouseLeaveEvent');
0 commit comments