(clientId: string, contextId: string)
| 351 | } |
| 352 | |
| 353 | async getContextTree(clientId: string, contextId: string): Promise<unknown> { |
| 354 | const resp = await this.forwardAndWait(clientId, DaemonMsgType.GET_CONTEXT_TREE_REQUEST, { id: contextId }); |
| 355 | return resp['body']; |
| 356 | } |
| 357 | |
| 358 | async takeSnapshot(clientId: string, elementId: string, contextId: string): Promise<string> { |
| 359 | const resp = await this.forwardAndWait(clientId, DaemonMsgType.TAKE_ELEMENT_SNAPSHOT_REQUEST, { |
no test coverage detected