/* global describe, it, expect */ import React from 'react' import renderer from 'react-test-renderer' import Icon from '../../lib/components/icon' describe('Icon', () => { it('renders correctly', () => { const tree = renderer.create( ).toJSON() expect(tree).toMatchSnapshot() }) })