使用mocha运行会导致超时,而不是让mocha捕获错误,因此它可能会立即失败。
var when = require('when');
var should = require('should');
describe('', function() {
it('', function(done) {
var d = when.defer();
d.resolve();
d.promise.then(function() {
true.should.be.false;
false.should.be.true;
throw new Error('Promise');
done();
}); }); });
http://runnable.com/me/U7VmuQurokZCvomD
是否有另一种方法可以在promise中进行断言,这样当它们失败时,它们会被mocha捕获,导致它立即失败?
根据chai建议,我调查了它,似乎我必须直接访问promise对象,对吧?问题是我没有直接使用承诺 ..如果我简化了我的不好但是这将更接近现实示例
function core_library_function(callback){
do_something_async(function which_returns_a(promise){
promise.then(function(){
callback(thing);
}); }); }
describe('', function() {
it('', function(done) {
core_library_function(function(thing){
...
done();
}); }); });
所以我真的无法直接控制承诺,它被抽象得很远。
答案 0 :(得分:12)
在使用Mocha的promises时,您必须在测试中return
承诺,并且由于未使用回调,因此需要删除done
参数。
it('', function() {
var d = when.defer();
d.resolve();
return d.promise.then(function() {
throw new Error('Promise');
});
});
Working with Promises下的文档中描述了这一点:
或者,您可以返回一个承诺,而不是使用
done()
回调。