|
@ -49,16 +49,17 @@ class IConsoleDriver { |
|
|
await this.client.resume(); |
|
|
await this.client.resume(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
this.state === "started"; |
|
|
|
|
|
|
|
|
this.state = "started"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
async pause() { |
|
|
async pause() { |
|
|
await this.client.pause(); |
|
|
await this.client.pause(); |
|
|
this.state === "connected"; |
|
|
|
|
|
|
|
|
this.state = "connected"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
async resume() { |
|
|
async resume() { |
|
|
await this.client.resume(); |
|
|
await this.client.resume(); |
|
|
|
|
|
this.state = "started"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
async stop() { |
|
|
async stop() { |
|
|