Delete the chart session
()
| 544 | |
| 545 | /** Delete the chart session */ |
| 546 | delete() { |
| 547 | if (this.#replayMode) this.#client.send('replay_delete_session', [this.#replaySessionID]); |
| 548 | this.#client.send('chart_delete_session', [this.#chartSessionID]); |
| 549 | delete this.#client.sessions[this.#chartSessionID]; |
| 550 | delete this.#client.sessions[this.#replaySessionID]; |
| 551 | this.#replayMode = false; |
| 552 | } |
| 553 | }; |
no test coverage detected