()
| 10 | const Test = createForm({ withRef: true })( |
| 11 | class extends React.Component { |
| 12 | render() { |
| 13 | const { getFieldProps } = this.props.form; |
| 14 | return ( |
| 15 | <form> |
| 16 | <input {...getFieldProps('normal')} /> |
| 17 | <input {...getFieldProps('nested1.a[0]')} /> |
| 18 | <input {...getFieldProps('nested2[0].b')} /> |
| 19 | </form> |
| 20 | ); |
| 21 | } |
| 22 | } |
| 23 | ); |
| 24 | const wrapper = mount(<Test />); |
nothing calls this directly
no test coverage detected