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