UNPKG

xchain-components

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