UNPKG

@master-c8/icons

Version:
14 lines (12 loc) 361 B
import { render } from '@testing-library/react'; import Close from './Close'; describe('@icons/Close', () => { it('Given a normal call it should render properly', () => { // arrange const { getByTitle } = render(<Close title="Close" />); // act const icon = getByTitle(/Close/i); // assert expect(icon).toBeInTheDocument(); }); });