UNPKG

xchain-components

Version:
14 lines (10 loc) 335 B
/* eslint react/jsx-filename-extension: 0 */ import React from 'react'; import { shallow } from 'enzyme'; import XInput from '../../XInput'; describe('XInput', () => { it('Input box should render correctly', () => { const component = shallow(<XInput placeholder="Input" />); expect(component).toMatchSnapshot(); }); });