我尝试在win 7上使用mocha和webstorm test runner。
我有这些配置参数:
节点的路径:
C:\Program Files (x86)\nodejs\node.exe
工作目录:
D:\creation\software developer\projects\dev\document root\
节点app js文件的路径:
C:\Users\inf3rno\node_modules\mocha\bin\_mocha
应用参数:
test
我在webstorm控制台中收到以下错误消息
✖ 1 of 1 test failed:
但没有关于哪个测试失败。 :S
如何解决?
(在git bash中我收到了详细的错误消息,因此安装了mocha)
与不同的记者一起尝试,但他们似乎都没有工作。我认为问题在于Error对象。其他一切都很好。
写了一个自定义记者,发现堆栈是否出现在webstorm控制台上是完全随机的。最好的选择是使用process.stderr.write打印它,使用console.log或process.stdout.write不显示任何内容。我不知道为什么会这样。也许它是某种类型的超时,但我将超时设置为9999999.:S:S:S嗯也许webstorm运行器有超时,这取决于它,而不是mocha超时设置...
与本报记者一起测试:
exports = module.exports = WebStorm;
/**
* Initialize a new `WebStorm` test reporter.
*
* @param {Runner} runner
* @api public
*/
//decribe -> suite
//it -> test
function WebStorm(runner) {
var buffer = [];
var suites = [];
var fails = [];
runner.on("suite", function(suite){
suites.push(suite.title || "''");
});
runner.on("suite end", function(suite){
if (fails.length > 0)
buffer.push("describe "+suites.join(".")+"\n"+fails.join("\n"));
fails = [];
suites.pop();
});
runner.on("fail", function(test, err){
fails.push(" it fail "+test.fullTitle() + err.message);
});
runner.on("end", function (){
process.stderr.write(buffer.length+"\n");
//process.stderr.write(buffer.join("\n"));
});
}
我发现输出文本的长度并不重要,只需要在显示它之前等待多长时间。所以我仍然认为这是一个超时问题,而不是一个stdout错误。 webstorm控制台返回:“进程已完成退出代码59”,表示“发生了意外的网络错误。”
更改为jasmine-node,它正在运行。
我改为jasmine2,它在Windows上有同样的问题。最简单的解决方法是将process.exit
推迟到例如1ms。所以它不能在stdout.write
结束之前退出。 (手动刷新stdout并在此之后调用exit也可能是一个有效的解决方案。)
答案 0 :(得分:5)
虽然更大的权力是debating on the hows and the whys to fix this,但是较小的凡人可以采用这种解决方法:
testRunner.js
来运行测试<强> testRunner.js 强>
var testFiles=["test/_helper.js","test/tests.js","test/tests.coffee"];
var Mocha = require('mocha');
var mocha = new Mocha;
mocha.reporter('spec').ui('bdd');
for (var i =0;i<testFiles.length;i++){
mocha.addFile(testFiles[i]);
}
var runner = mocha.run(function(){
console.log('finished');
});
礼貌:http://wuntusk.blogspot.com/2012/06/using-webstorm-or-phpstorm-and-mocha.html
答案 1 :(得分:3)
答案 2 :(得分:1)
即使在实施了Mrchief的回答之后,我仍然在输出中得到了混乱的报道。我最终在终端窗口中运行测试。作为参考;
确保全局安装mocha。
npm install -g mocha
打开终端窗口(Alt-Minus)并切换到测试脚本所在的目录
运行mocha
mocha -R spec * .js