import React from 'react'; import { render } from '@testing-library/react'; import axe from '../../../../axe-helper'; import CheckboxField from './CheckboxField'; describe('', () => { it('renders the component with props with no a11y violations', async () => { const { container } = render(); const results = await axe(container.innerHTML); expect(container.firstChild).toMatchSnapshot(); expect(results).toHaveNoViolations(); }); it('renders the component with no control icon and no a11y violations', async () => { const { container } = render(); const results = await axe(container.innerHTML); expect(container.firstChild).toMatchSnapshot(); expect(results).toHaveNoViolations(); }); });