pashto-inflector/src/App.test.js

9 lines
238 B
JavaScript

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