1497eaf610
* Temporarily disabled ESM bundles because the current setup confuses webpack4 (but not parceljs). Since create-react-app uses webpack4, not doing this would make theatre incompatible with CRA.
7 lines
214 B
JavaScript
7 lines
214 B
JavaScript
import {render, screen} from '@testing-library/react'
|
|
|
|
test('renders learn react link', () => {
|
|
render(<App />)
|
|
const linkElement = screen.getByText(/learn react/i)
|
|
expect(linkElement).toBeInTheDocument()
|
|
})
|