diff --git a/test/components/AnimatedCheckmark.spec.js b/test/components/AnimatedCheckmark.spec.js new file mode 100644 index 00000000..83e44057 --- /dev/null +++ b/test/components/AnimatedCheckmark.spec.js @@ -0,0 +1,14 @@ +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() + expect(el.find(Isvg)).toHaveLength(1) + }) + }) +})