UNPKG

metadata-based-explorer1

Version:
45 lines (33 loc) 1.59 kB
import React from 'react'; import IconUnlock from '../IconUnlock'; describe('icons/general/IconUnlock', () => { test('should correctly render default icon', () => { const wrapper = shallow(<IconUnlock />); expect(wrapper.is('AccessibleSVG')).toBe(true); expect(wrapper.prop('height')).toEqual(14); expect(wrapper.prop('width')).toEqual(12); expect(wrapper.find('.fill-color').prop('fill')).toEqual('#444'); }); test('should correctly render icon with specified class', () => { const wrapper = shallow(<IconUnlock className="test" />); expect(wrapper.hasClass('icon-unlock')).toBe(true); expect(wrapper.hasClass('test')).toBe(true); }); test('should correctly render icon with specified color', () => { const color = '#ffffff'; const wrapper = shallow(<IconUnlock color={color} />); expect(wrapper.find('.fill-color').prop('fill')).toEqual(color); }); test('should correctly render icon with specified width and height', () => { const width = 16; const height = 17; const wrapper = shallow(<IconUnlock 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(<IconUnlock title={title} />); expect(wrapper.find('AccessibleSVG').prop('title')).toEqual(title); }); });