diff --git a/lib/app.js b/lib/app.js index d22d2715..9b19455c 100644 --- a/lib/app.js +++ b/lib/app.js @@ -214,7 +214,7 @@ class App { // Launch const execOpts = {maxBuffer: 1024 * 1024 * 10}; - this.testrpcProcess = childprocess.exec(`${command} ${options}`, execOpts, (err, stdout, stderr) => { + this.testrpcProcess = childprocess.exec(`node ${command} ${options}`, execOpts, (err, stdout, stderr) => { if (err) { if (stdout) this.log(`testRpc stdout:\n${stdout}`); if (stderr) this.log(`testRpc stderr:\n${stderr}`);