如何为返回承诺的Intern测试指定超时



在Intern中,我可以使用this.async()指定超时,例如

var d = this.async(1000);
xhr(..., d.callback(...));
return d;

然而,如果我的测试返回一个承诺,我如何指定超时?例如:

return asyncFunc().then(function(res){
    assert.strictEquals(res, 2);
});

this.timeout设置为您的超时值。

相关内容

  • 没有找到相关文章

最新更新