a0fa66e8f5
Co-authored-by: Walid <87608619+WalidKorchi@users.noreply.github.com>
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import { Divider } from './'
|
|
|
|
describe('<Divider />', () => {
|
|
it('should render successfully', () => {
|
|
const { baseElement } = render(<Divider />)
|
|
expect(baseElement).toBeTruthy()
|
|
})
|
|
})
|