2017-07-21 20:23:38 +08:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
2017-09-27 09:56:30 +08:00
|
|
|
exports[`Input should support maxLength 1`] = `
|
|
|
|
<Input
|
|
|
|
disabled={false}
|
|
|
|
maxLength="3"
|
|
|
|
prefixCls="ant-input"
|
|
|
|
type="text"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
className="ant-input"
|
|
|
|
disabled={false}
|
|
|
|
maxLength="3"
|
|
|
|
onKeyDown={[Function]}
|
|
|
|
type="text"
|
|
|
|
/>
|
|
|
|
</Input>
|
|
|
|
`;
|
|
|
|
|
2017-07-21 20:23:38 +08:00
|
|
|
exports[`TextArea should support disabled 1`] = `
|
|
|
|
<TextArea
|
|
|
|
disabled={true}
|
|
|
|
prefixCls="ant-input"
|
|
|
|
>
|
|
|
|
<textarea
|
|
|
|
className="ant-input ant-input-disabled"
|
|
|
|
disabled={true}
|
|
|
|
onChange={[Function]}
|
|
|
|
onKeyDown={[Function]}
|
|
|
|
style={Object {}}
|
|
|
|
/>
|
|
|
|
</TextArea>
|
|
|
|
`;
|
2017-09-27 09:56:30 +08:00
|
|
|
|
|
|
|
exports[`TextArea should support maxLength 1`] = `
|
|
|
|
<TextArea
|
|
|
|
maxLength="10"
|
|
|
|
prefixCls="ant-input"
|
|
|
|
>
|
|
|
|
<textarea
|
|
|
|
className="ant-input"
|
|
|
|
maxLength="10"
|
|
|
|
onChange={[Function]}
|
|
|
|
onKeyDown={[Function]}
|
|
|
|
style={Object {}}
|
|
|
|
/>
|
|
|
|
</TextArea>
|
|
|
|
`;
|