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