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