UNPKG

qt-public-ui

Version:

新设计规范下业务组件库

14 lines 510 B
import React from 'react'; import { mount } from 'enzyme'; import Input from '../'; describe('Input', function () { it('can limit word count in TextArea', function () { var wrapper = mount( /*#__PURE__*/React.createElement(Input.TextArea, { placeholder: "\u8BF7\u8F93\u5165", value: "\u8FD9\u662F\u4E00\u4E2A\u8D85\u8FC7\u4E09\u4E2A\u5B57\u7684\u53E5\u5B50", limit: 3 })); expect(wrapper.text()).toEqual('这是一3/3'); expect(wrapper.render()).toMatchSnapshot(); }); });