it('an uncontrolled text input will not update the value attribute on blur', () => {
      const stub = ReactTestUtils.renderIntoDocument(
        <input type="text" defaultValue="1" />,
      );
      const node = ReactDOM.findDOMNode(stub);