UNPKG

@swrve/core

Version:

Core set of Swrve UI Components

11 lines (9 loc) 287 B
import React from 'react' import { render } from '@testing-library/react' import Textarea from '../textarea' describe('<Textarea/>', () => { it('should render', () => { const { container } = render(<Textarea onChange={() => {}} />) expect(container).toMatchSnapshot() }) })