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