|
|
@ -153,7 +153,8 @@ class App { |
|
|
|
: command = `${npm} `; |
|
|
|
: command = `${npm} `; |
|
|
|
|
|
|
|
|
|
|
|
// Launch
|
|
|
|
// Launch
|
|
|
|
this.testrpcProcess = childprocess.exec(command + options, null, (err, stdout, stderr) => { |
|
|
|
const execOpts = {maxBuffer: 1024 * 1024 * 10}; |
|
|
|
|
|
|
|
this.testrpcProcess = childprocess.exec(command + options, execOpts, (err, stdout, stderr) => { |
|
|
|
if (err) { |
|
|
|
if (err) { |
|
|
|
if (stdout) this.log(`testRpc stdout:\n${stdout}`); |
|
|
|
if (stdout) this.log(`testRpc stdout:\n${stdout}`); |
|
|
|
if (stderr) this.log(`testRpc stderr:\n${stderr}`); |
|
|
|
if (stderr) this.log(`testRpc stderr:\n${stderr}`); |
|
|
|