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

8 lines
214 B
JavaScript
Raw Normal View History

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