import { render, screen } from '@testing-library/react'; import App from './App'; test('renders', () => { render(); const linkElement = screen.getByText(/pashto verb explorer/i); expect(linkElement).toBeInTheDocument(); });