11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import { Main } from '../Main'
|
|
|
|
describe('<Main />', () => {
|
|
it('should render', async () => {
|
|
const { getByText } = render(<Main>Content</Main>)
|
|
expect(getByText('Content')).toBeInTheDocument()
|
|
})
|
|
})
|