it('should resolve if the error is caught', function (done) {
    te(Promise.reject(new TypeError()))
      .then(function () {
        done();
      });