File size: 364 Bytes
9fed9f2
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import '@testing-library/jest-dom/extend-expect';
import { test, expect } from '@jest/globals';
import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';

test('renders English to Hindi Word Selector', () => {
  render(<App />);
  const headingElement = screen.getByText(/English to Hindi Word Selector/i);
 
});