UNPKG

metadata-based-explorer1

Version:
25 lines (18 loc) 647 B
import React from 'react'; import IconAlertDefault from '../IconAlertDefault'; describe('icons/general/IconAlertDefault', () => { const getWrapper = (props = {}) => shallow(<IconAlertDefault {...props} />); test('should correctly render default icon', () => { const wrapper = getWrapper(); expect(wrapper).toMatchSnapshot(); }); test('should correctly render icon with additional props', () => { const wrapper = getWrapper({ className: 'class', height: 100, title: 'title', width: 200, }); expect(wrapper).toMatchSnapshot(); }); });