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