import React from 'react'; import { renderAsyncTest } from '@lg-tools/test-harnesses'; import { render, waitFor } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import { State, TextArea } from '../TextArea'; import { getTestUtils } from './getTestUtils'; const error = 'This is the error message'; const defaultProps = { label: 'Test Input Label', description: 'This is the description', placeholder: 'This is some placeholder text', }; const renderTextAreaAsync = () => renderAsyncTest(