UNPKG

xchain-components

Version:
15 lines (11 loc) 317 B
/* @flow */ /* eslint react/jsx-filename-extension: 0 */ import React from 'react'; import { shallow } from 'enzyme'; import XLoader from '..'; describe('XLoader', () => { it('should render correctly', () => { const component = shallow(<XLoader active />); expect(component).toMatchSnapshot(); }); });