mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-15 01:25:28 +01:00
12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
import { render } from 'react-testing-library'
|
|
|
|
const testRender = component => {
|
|
it('renders without crashing', () => {
|
|
const { container } = render(component)
|
|
|
|
expect(container.firstChild).toBeInTheDocument()
|
|
})
|
|
}
|
|
|
|
export default testRender
|