我有一个拒绝承诺的课程:
Sync.prototype.doCall = function(verb, method, data) {
var self = this;
self.client = P.promisifyAll(new Client());
var res = this.queue.then(function() {
return self.client.callAsync(verb, method, data)
.then(function(res) {
return;
})
.catch(function(err) {
// This is what gets called in my test
return P.reject('Boo');
});
});
this.queue = res.delay(this.options.throttle * 1000);
return res;
};
Sync.prototype.sendNote = function(data) {
var self = this;
return self.doCall('POST', '/Invoice', {
Invoice: data
}).then(function(res) {
return data;
});
};
在我的测试中:
return expect(s.sendNote(data)).to.eventually.be.rejectedWith('Boo');
但是,当测试通过时,它会将错误抛出到控制台。
未处理的拒绝错误:嘘...
对于非承诺错误,我使用 bind 来测试以防止错误被抛出,直到 Chai 可以包装和测试:
return expect(s.sendNote.bind(s, data)).to.eventually.be.rejectedWith('Boo');
但是,这不适用于此并返回:
类型错误:[Function] is not a thenable.
对此进行测试的正确方法是什么?