xchain-components
Version:
Xchain Components
13 lines (10 loc) • 358 B
JavaScript
/* 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();
});
});