import React from 'react';
import { render } from '@testing-library/react';
import axe from '../../../../../axe-helper';
import Card from '..';
describe('', () => {
it('renders with a link', () => {
const testId = 'card-image-link';
const { queryByTestId } = render(
} url="" />
,
);
expect(queryByTestId(testId)).toBeTruthy();
});
it('renders the component with no a11y violations', async () => {
const { container } = render(
,
);
const results = await axe(container.innerHTML);
expect(container.firstChild).toMatchSnapshot();
expect(results).toHaveNoViolations();
});
});