我有一些这样的代码。这个想法是我正在从文件中读取夹具数据并使用每个文件中的数据来添加一个批次:
// test.js
var vows = require('vows')
, async = require('async')
, suite;
exports.suite = suite = vows.describe('My tests');
function run_tests() {
set_up = [
find_tests(tests_path) // gets test data
];
async.series(set_up, function(errs, tests) {
tests = tests.pop();
tests.forEach(function(test) {
var batch = make_batch(test); // makes a batch
suite.addBatch(batch);
})
});
}
run_tests();
显然vows test.js
没有找到任何测试,因为批次是异步添加的。我不知道如何使这项工作。我想使用vows
能够使用记者。