(sidecars?: PlaygroundSidecar[])
| 1272 | } |
| 1273 | |
| 1274 | private async stopSidecars(sidecars?: PlaygroundSidecar[]): Promise<void> { |
| 1275 | for (const sidecar of sidecars || []) { |
| 1276 | await sidecar.stop?.(); |
| 1277 | } |
| 1278 | } |
| 1279 | |
| 1280 | private getActiveAgentOrThrow(): PageAgent { |
| 1281 | if (!this._activeConnection.agent) { |
no test coverage detected