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