metadata-based-explorer1
Version:
Box UI Elements
25 lines (19 loc) • 640 B
JavaScript
import React from 'react';
import IconCopy from '../IconCopy';
describe('icons/general/IconCopy', () => {
const getWrapper = (props = {}) => shallow(<IconCopy {...props} />);
test('should correctly render default icon', () => {
const wrapper = getWrapper();
expect(wrapper).toMatchSnapshot();
});
test('should correctly render icon with specified props', () => {
const wrapper = getWrapper({
className: 'test',
color: 'green',
height: 100,
title: 'title',
width: 200,
});
expect(wrapper).toMatchSnapshot();
});
});