import React from 'react'; import { render, screen } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import { TextArea } from './'; describe('TextArea component', () => { const value = 'abc'; const onChange = vi.fn(); describe('given an `id` props', () => { it('adds the `id` from props textarea component', () => { render(