File size: 304 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 Component from './client-component'
it('works with client-only code', () => {
render(<Component />)
expect(screen.getByRole('heading')).toHaveTextContent('Hello')
})
|