UNPKG

@master-c8/icons

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