UNPKG

metadata-based-explorer1

Version:
35 lines (25 loc) 1.15 kB
import React from 'react'; import IconRetry from '../IconRetry'; describe('icons/general/IconRetry', () => { test('should correctly render default icon', () => { const wrapper = shallow(<IconRetry />); expect(wrapper.hasClass('bdl-IconRetry')).toEqual(true); }); test('should correctly render icon with specified color', () => { const color = '#ffffff'; const wrapper = shallow(<IconRetry color={color} />); expect(wrapper.find('g').prop('fill')).toEqual(color); }); test('should correctly render icon with specified width and height', () => { const width = 16; const height = 17; const wrapper = shallow(<IconRetry height={height} width={width} />); expect(wrapper.find('AccessibleSVG').prop('width')).toEqual(width); expect(wrapper.find('AccessibleSVG').prop('height')).toEqual(height); }); test('should correctly render icon with title', () => { const title = 'fool'; const wrapper = shallow(<IconRetry title={title} />); expect(wrapper.find('AccessibleSVG').prop('title')).toEqual(title); }); });