This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/generators/component/Component.test.tsx.hbs

11 lines
310 B
Handlebars
Raw Normal View History

2021-10-24 05:48:06 +02:00
import { render } from '@testing-library/react'
import { {{ properCase name }} } from './{{ properCase name }}'
describe('<{{ properCase name }} />', () => {
it('should render successfully', () => {
const { baseElement } = render(<{{ properCase name }} />)
expect(baseElement).toBeTruthy()
})
})