const stub = sinon
      .stub(XMLHttpRequest.prototype, 'send')
      .callsFake(function () {
        this.onerror(new Error('...'))
      })