我想知道是否有办法从node.js以编程方式执行mocha测试,以便我可以将单元测试与Cloud 9集成.Cloud 9 IDE有一个很好的功能,无论何时保存javascript文件,它都会查找具有相同名称的文件,以“_test”或“Test”结尾,并使用node.js自动运行。例如,它在自动运行的文件demo_test.js中包含此代码段。
if (typeof module !== "undefined" && module === require.main) {
require("asyncjs").test.testcase(module.exports).exec()
}
我可以使用这样的东西进行摩卡测试吗?有点像摩卡(这个).run()?
答案 0 :(得分:12)
以编程方式运行mocha的基本要点:
需要mocha:
var Mocha = require('./'); //The root mocha path (wherever you git cloned
//or if you used npm in node_modules/mocha)
Instatiate调用构造函数:
var mocha = new Mocha();
添加测试文件:
mocha.addFile('test/exampleTest'); // direct mocha to exampleTest.js
运行它!:
mocha.run();
添加链接函数以编程方式处理传递和失败的测试。在这种情况下,添加一个回调来打印结果:
var Mocha = require('./'); //The root mocha path
var mocha = new Mocha();
var passed = [];
var failed = [];
mocha.addFile('test/exampleTest'); // direct mocha to exampleTest.js
mocha.run(function(){
console.log(passed.length + ' Tests Passed');
passed.forEach(function(testName){
console.log('Passed:', testName);
});
console.log("\n"+failed.length + ' Tests Failed');
failed.forEach(function(testName){
console.log('Failed:', testName);
});
}).on('fail', function(test){
failed.push(test.title);
}).on('pass', function(test){
passed.push(test.title);
});
答案 1 :(得分:1)
你的里程可能会有所不同,但是我在一段时间内编造了下面的单行程,这对我很有帮助:
if (!module.parent)(new(require("mocha"))()).ui("exports").reporter("spec").addFile(__filename).run(process.exit);
此外,如果您希望以Cloud {期望的asyncjs
格式输出,您需要提供一个特殊的记者。这是一个简单的记者看起来很简单的例子:
if (!module.parent){
(new(require("mocha"))()).ui("exports").reporter(function(r){
var i = 1, n = r.grepTotal(r.suite);
r.on("fail", function(t){ console.log("\x1b[31m[%d/%d] %s FAIL\x1b[0m", i++, n, t.fullTitle()); });
r.on("pass", function(t){ console.log("\x1b[32m[%d/%d] %s OK\x1b[0m", i++, n, t.fullTitle()); });
r.on("pending", function(t){ console.log("\x1b[33m[%d/%d] %s SKIP\x1b[0m", i++, n, t.fullTitle()); });
}).addFile(__filename).run(process.exit);
}