(simulatorUuid: string)
| 148 | } |
| 149 | |
| 150 | function createSessionId(simulatorUuid: string): string { |
| 151 | return `${simulatorUuid}:${Date.now()}`; |
| 152 | } |
| 153 | |
| 154 | export function listActiveVideoCaptureSessionIds(): string[] { |
| 155 | return Array.from(sessions.keys()).sort(); |
no outgoing calls
no test coverage detected