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