UNPKG

xchain-components

Version:
13 lines (10 loc) 358 B
/* eslint react/jsx-filename-extension: 0 */ import React from 'react'; import { shallow } from 'enzyme'; import XIcon from '../../XIcon'; describe('XIcon', () => { it('Icon should render correctly', () => { const component = shallow(<XIcon disabled name="user circle" size="big" color="green" />); expect(component).toMatchSnapshot(); }); });