11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
|
import { render } from '@testing-library/react'
|
||
|
|
||
|
import { Textarea } from './Textarea'
|
||
|
|
||
|
describe('<Textarea />', () => {
|
||
|
it('should render successfully', () => {
|
||
|
const { baseElement } = render(<Textarea label='Textarea' />)
|
||
|
expect(baseElement).toBeTruthy()
|
||
|
})
|
||
|
})
|