theatre/examples/dom-cra/src/App.test.js

8 lines
214 B
JavaScript
Raw Normal View History

2021-08-07 20:54:28 +02:00
import {render, screen} from '@testing-library/react'
test('renders learn react link', () => {
render(<App />)
const linkElement = screen.getByText(/learn react/i)
expect(linkElement).toBeInTheDocument()
})