我一直在使用 node 并使用 vows 来编写测试。
var vows = require('vows');
var assert = require('assert');
var boardData = require('../lib/data/BoardData.js');
vows.describe('Loading provinces and Boundries for').addBatch({
'version': {
'2008E5-1':{
topic: function () { boardData.createBoard("2008E5",this.callback); },
'exists': function (err,provs,bounds) { assert.ok(true); }
}/*,
'2008E5-2': {
topic: function () { boardData.createBoard("2008E5",this.callback); },
'exists': function (err,provs,bounds) { assert.ok(true); }
}*/
}
}).export(module);
当我运行此代码时,我得到了预期的结果。当我取消注释注释部分时,注意到两个成功完成,但是通过放置一个 console.log("foo"); 可以发现第二个是两次。在适当的位置。
·· ✓ OK » 2 honored (0.067s)
·
✗ Errored » callback not fired
in version 2008E5-1
in Loading provinces and Boundries for
in undefined
这一定是我遗漏了什么或缺乏对某事的理解,但我无法弄清楚。谁能帮我?提前致谢!