()
| 125 | signalHandlersAttached = true; |
| 126 | |
| 127 | const stopAll = (): void => { |
| 128 | for (const simulatorUuid of sessions.keys()) { |
| 129 | void stopSession(simulatorUuid, { timeoutMs: 250 }); |
| 130 | } |
| 131 | }; |
| 132 | |
| 133 | try { |
| 134 | process.on('SIGINT', stopAll); |
nothing calls this directly
no test coverage detected