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.
15 lines
402 B
15 lines
402 B
7 years ago
|
import React from 'react'
|
||
|
import { shallow } from 'enzyme'
|
||
|
import Isvg from 'react-inlinesvg'
|
||
|
|
||
|
import AnimatedCheckmark from '../../app/components/AnimatedCheckmark'
|
||
|
|
||
|
describe('component.AnimatedCheckmark', () => {
|
||
|
describe('default', () => {
|
||
|
it('should render default component', () => {
|
||
|
const el = shallow(<AnimatedCheckmark />)
|
||
|
expect(el.find(Isvg)).toHaveLength(1)
|
||
|
})
|
||
|
})
|
||
|
})
|