metadata-based-explorer1
Version:
Box UI Elements
24 lines (18 loc) • 646 B
JavaScript
import React from 'react';
import IconGiftWithWings from '../IconGiftWithWings';
describe('icons/general/IconGiftWithWings', () => {
const getWrapper = (props = {}) => shallow(<IconGiftWithWings {...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',
height: 15,
title: 'title',
width: 15,
});
expect(wrapper).toMatchSnapshot();
});
});