11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import { Main } from '.'
|
|
|
|
describe('<Main />', () => {
|
|
it('should render successfully', () => {
|
|
const { baseElement } = render(<Main />)
|
|
expect(baseElement).toBeTruthy()
|
|
})
|
|
})
|