File size: 290 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 | /**
* @jest-environment jsdom
*/
import { render, screen } from '@testing-library/react'
import '@testing-library/jest-dom'
import Page from './page'
it('works with server-only imported code', () => {
render(<Page />)
expect(screen.getByRole('heading')).toHaveTextContent('3.14')
})
|