You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
580 B
18 lines
580 B
import React from 'react'
|
|
import { configure, shallow } from 'enzyme'
|
|
import Adapter from 'enzyme-adapter-react-16'
|
|
import Isvg from 'react-inlinesvg'
|
|
|
|
import AnimatedCheckmark from 'components/AnimatedCheckmark'
|
|
import checkmarkIcon from 'components/AnimatedCheckmark/checkmark.svg'
|
|
|
|
configure({ adapter: new Adapter() })
|
|
|
|
describe('component.AnimatedCheckmark', () => {
|
|
describe('default', () => {
|
|
it('should render default component', () => {
|
|
const el = shallow(<AnimatedCheckmark />)
|
|
expect(el.find(Isvg).props().src).toContain(checkmarkIcon)
|
|
})
|
|
})
|
|
})
|
|
|