UNPKG

xchain-components

Version:
20 lines (16 loc) 392 B
/* @flow */ /* eslint react/jsx-filename-extension: 0 */ import React from 'react'; import { shallow } from 'enzyme'; import XMenu from '..'; describe('XMenu', () => { it('should render correctly ', () => { const component = shallow( <XDatePicker value="01/22/2014" handleChange={handleChange} /> ); expect(component).toMatchSnapshot(); }); });