UNPKG

metadata-based-explorer1

Version:
24 lines (18 loc) 616 B
import React from 'react'; import IconPhone from '../IconPhone'; describe('icons/general/IconPhone', () => { const getWrapper = (props = {}) => shallow(<IconPhone {...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: 150, title: 'title', width: 160, }); expect(wrapper).toMatchSnapshot(); }); });