xchain-components
Version:
Xchain Components
13 lines (10 loc) • 369 B
JavaScript
/* eslint react/jsx-filename-extension: 0 */
import React from 'react';
import { shallow } from 'enzyme';
import XTextArea from '..';
describe('XTextArea', () => {
it('XTextArea renders correctly', () => {
const component = shallow(<XTextArea placeholder="Enter Orders, Products, Vendors" minHeight="100" />);
expect(component).toMatchSnapshot();
});
});