metadata-based-explorer1
Version:
Box UI Elements
14 lines (9 loc) • 381 B
JavaScript
import React from 'react';
import IconCollectionsStar from '../IconCollectionsStar';
describe('icons/collections/IconCollectionsStar', () => {
const getWrapper = (props = {}) => shallow(<IconCollectionsStar {...props} />);
test('should correctly render default icon', () => {
const wrapper = getWrapper();
expect(wrapper).toMatchSnapshot();
});
});