import React from 'react'; import { shallow } from 'enzyme'; import IconCollectionsStar from '../IconCollectionsStar'; describe('icons/collections/IconCollectionsStar', () => { const getWrapper = (props = {}) => shallow(); test('should correctly render default icon', () => { const wrapper = getWrapper(); expect(wrapper).toMatchSnapshot(); }); });