1
0
Fork 0
blog/jest/testRender.ts

13 lines
309 B
TypeScript

import { render } from '@testing-library/react'
import { ReactElement } from 'react'
const testRender = (component: ReactElement) => {
it('renders without crashing', () => {
const { container } = render(component)
expect(container.firstChild).toBeInTheDocument()
})
}
export default testRender