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