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