(command: string, args?: any)
| 104 | } |
| 105 | |
| 106 | public send(command: string, args?: any): Promise<any> { |
| 107 | for (const tracker of this.currentTrackers) { |
| 108 | if (tracker.onWillReceiveMessage) |
| 109 | tracker.onWillReceiveMessage({ command, arguments: args }); |
| 110 | } |
| 111 | return super.send(command, args); |
| 112 | } |
| 113 | |
| 114 | public start(port?: number): Promise<void> { |
| 115 | this.hasStarted = true; |
no test coverage detected