import React from 'react'; import { render } from '@testing-library/react'; import { FormSection } from '..'; describe('', () => { it('renders the form section', () => { const container = render(
Child 1
Child 2
, ); expect(container).toMatchSnapshot(); }); });