metadata-based-explorer1
Version:
Box UI Elements
41 lines (30 loc) • 1.33 kB
JavaScript
import React from 'react';
import IconBell2 from '../IconBell2';
describe('icons/states/NoNotificationStae', () => {
test('should correctly render default icon', () => {
const wrapper = shallow(<IconBell2 />);
expect(wrapper.hasClass('icon-bell-2')).toBeTruthy();
});
test('should correctly render the icon with specified class', () => {
const className = 'my-state';
const wrapper = shallow(<IconBell2 className={className} />);
expect(wrapper.hasClass(className)).toBeTruthy();
});
test('should correctly render icon with specified width and height', () => {
const width = 140;
const height = 150;
const wrapper = shallow(<IconBell2 height={height} width={width} />);
expect(wrapper.prop('width')).toEqual(width);
expect(wrapper.prop('height')).toEqual(height);
});
test('should correctly render svg with specified title', () => {
const title = 'oh hi there';
const wrapper = shallow(<IconBell2 title={title} />);
expect(wrapper.prop('title')).toEqual(title);
});
test('should override color in svg when specified', () => {
const color = '#acf';
const wrapper = shallow(<IconBell2 color={color} isFilled />);
expect(wrapper).toMatchSnapshot();
});
});