Website for showcasing all features of Tesseract Web.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 line
387 B

  1. import * as React from 'react';
  2. import {
  3. render,
  4. screen
  5. } from '@testing-library/react';
  6. import '@testing-library/jest-dom';
  7. import {
  8. MultilineTextInput
  9. } from '.';
  10. describe('MultilineTextInput', () => {
  11. it('should render a textbox', () => {
  12. render(<MultilineTextInput />);
  13. const textbox = screen.getByRole('textbox');
  14. expect(textbox).toBeInTheDocument();
  15. });
  16. });