()
| 147 | } |
| 148 | |
| 149 | public async listSessions(): Promise<string> { |
| 150 | return await this.executeCommandEx(this.nodeExecutable, [await this.getLeetCodeBinaryPath(), "session"]); |
| 151 | } |
| 152 | |
| 153 | public async enableSession(name: string): Promise<string> { |
| 154 | return await this.executeCommandEx(this.nodeExecutable, [await this.getLeetCodeBinaryPath(), "session", "-e", name]); |
no test coverage detected