fix(test): use logger instead of engine.logger

This commit is contained in:
Jonathan Rainville 2018-12-20 11:24:23 -05:00 committed by Iuri Matias
parent 7811211f91
commit af48788ab5
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class Test {
return callback();
}
if (!this.ipc.connected) {
this.engine.logger.error("Could not connect to Embark's IPC. Is embark running?");
this.logger.error("Could not connect to Embark's IPC. Is embark running?");
if(!this.options.inProcess) process.exit(1);
}
return this.connectToIpcNode(callback);