我可能会遗漏一些非常明显的东西,但是我无法让gulp-mocha
捕获错误,导致我的gulp watch
任务在每次测试失败时结束。
这是一个非常简单的设置:
gulp.task("watch", ["build"], function () {
gulp.watch([paths.scripts, paths.tests], ["test"]);
});
gulp.task("test", function() {
return gulp.src(paths.tests)
.pipe(mocha({ reporter: "spec" }).on("error", gutil.log));
});
或者,将处理程序放在整个流上也会产生同样的问题:
gulp.task("test", function() {
return gulp.src(paths.tests)
.pipe(mocha({ reporter: "spec" }))
.on("error", gutil.log);
});
我也尝试使用plumber
,combine
和gulp-batch
无效,所以我想我忽略了一些微不足道的事情。
答案 0 :(得分:66)
你需要忽略'错误'并且总是发出'结束'来使'gulp.watch'工作。
function handleError(err) {
console.log(err.toString());
this.emit('end');
}
gulp.task("test", function() {
return gulp.src(paths.tests)
.pipe(mocha({ reporter: "spec" })
.on("error", handleError));
});
这使得'gulp test'总是返回'0',这对于持续集成来说是个问题,但我认为我们现在别无选择。
答案 1 :(得分:41)
扩展Shuhei Kagawa的回答..
发射结束将阻止由于未捕获的错误转换为异常而导致gulp退出。
设置观察变量以跟踪您是否正在通过监视运行测试,然后退出或不退出,具体取决于您是在开发还是运行CI。
var watching = false;
function onError(err) {
console.log(err.toString());
if (watching) {
this.emit('end');
} else {
// if you want to be really specific
process.exit(1);
}
}
gulp.task("test", function() {
return gulp.src(paths.tests)
.pipe(mocha({ reporter: "spec" }).on("error", onError));
});
gulp.task("watch", ["build"], function () {
watching = true;
gulp.watch([paths.tests], ["test"]);
});
然后可以将其用于开发和CI