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