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