当任何错误抛出时,如何在承诺中做出断言?

时间:2014-07-03 15:19:25

标签: node.js promise mocha throw

使用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();                         
}); }); });

所以我真的无法直接控制承诺,它被抽象得很远。

1 个答案:

答案 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()回调。