import * as React from 'react' import { render, cleanup } from '@testing-library/react' import { MultiLineTextField } from './MultiLineTextField' describe('', () => { afterEach(cleanup) it('should render each line in a separated div', () => { const record = { comment: 'line1\nline2' } const { queryByTestId } = render( ) expect(queryByTestId('comment.0').textContent).toBe('line1') expect(queryByTestId('comment.1').textContent).toBe('line2') }) it.each([null, undefined])( 'should render the emptyText when value is %s', (body) => { const { queryByText } = render( ) expect(queryByText('NA')).not.toBeNull() } ) })