3

我是 Cucumber.js 的新手,试图在步骤定义中执行 shell 命令。下面的示例是一个步骤定义片段,Cucumber.js 不打印标准输出。我基本上需要一步访问stdout和stderr。

var exec = require('child_process').exec;

this.Given(/^XYZ server is running$/, function(callback) {
child = exec('pwd', function (error, stdout, stderr) {
  console.log('stdout: ' + stdout);
  console.log('stderr: ' + stderr);
  if (error !== null) {
    console.log('exec error: ' + error);
  }
});
callback();
});
4

1 回答 1

1

看起来像是nodejitsu的一个很好的例子。

 var childProcess = require('child_process'),
     ls;

 ls = childProcess.exec('ls -l', function (error, stdout, stderr) {
   if (error) {
     console.log(error.stack);
     console.log('Error code: '+error.code);
     console.log('Signal received: '+error.signal);
   }
   console.log('Child Process STDOUT: '+stdout);
   console.log('Child Process STDERR: '+stderr);
 });

 ls.on('exit', function (code) {
   console.log('Child process exited with exit code '+code);
 });
于 2013-08-06T20:05:00.893 回答