This repository has been archived on 2022-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
webserver-framework-frontend/src/App.test.js

9 lines
246 B
JavaScript

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