Files
cypress/system-tests/projects/create-react-app-custom-index-html/src/App.test.js
T
2023-02-13 21:40:58 +00:00

10 lines
241 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()
})