pashto-inflector/src/App.test.js

9 lines
238 B
JavaScript
Raw Normal View History

2021-03-09 12:39:13 +00:00
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();
});