这个 gulp 任务exec('node config/app')
在线挂起。第一个exec
工作正常,但第二个只是挂起。
gulp.task('test', function(cb) {
var exec = require('child_process').exec;
exec('echo 3', function(err, stdout) {
console.log(stdout);
});
exec('node config/app', function(err, stdout, stderr) {
console.log(stdout);
var testemOptions = {
file: 'testem.json'
};
var t = new testem();
return t.startCI(testemOptions, function() {
cb();
});
});
});
我可以看到输出3
,但第二个没有显示输出console.log
。
我正在尝试在使用 testem 运行测试之前运行我的服务器。
我已经尝试过这个类似的解决方案,但它不起作用:Exec not return any when trying to run git shortlog with nodejs。
另外我最近问了一个挂起的 testem gulp task 问题:Testem gulp task hangs after finished。
编辑:
我目前的解决方案是:
gulp.task('test', /*['build'],*/ function(cb) {
var spawn = require('child_process').spawn;
var proc = spawn('node', ['config/app']);
proc.stdout.on('readable', function() {
var output = proc.stdout.read();
if (output && output.toString().match('express listening')) {
var testemOptions = {
file: 'testem.json'
};
var t = new testem();
t.startCI(testemOptions, function() {
proc.kill();
cb();
});
}
});
});