diff --git a/src/drivers/iconsole.js b/src/drivers/iconsole.js index 24f1725..83479a3 100644 --- a/src/drivers/iconsole.js +++ b/src/drivers/iconsole.js @@ -49,16 +49,17 @@ class IConsoleDriver { await this.client.resume(); } - this.state === "started"; + this.state = "started"; } async pause() { await this.client.pause(); - this.state === "connected"; + this.state = "connected"; } async resume() { await this.client.resume(); + this.state = "started"; } async stop() {