import { render } from '@testing-library/react'; import { Chart } from './Chart'; import { ChartGroup } from '../ChartGroup/ChartGroup'; import { ChartLine } from '../ChartLine/ChartLine'; Object.values([true, false]).forEach(() => { test('Chart', () => { const { asFragment } = render(); expect(asFragment()).toMatchSnapshot(); }); }); test('renders axis and component children', () => { const { asFragment } = render( ); expect(asFragment()).toMatchSnapshot(); });