()
| 106 | |
| 107 | // Utility functions |
| 108 | export function getAllRunningProcessIds(): string[] { |
| 109 | return Array.from(processTerminalForegroundStates.keys()); |
| 110 | } |
| 111 | |
| 112 | export function getAllBackgroundedProcessIds(): string[] { |
| 113 | return Array.from(processTerminalBackgroundStates.keys()); |
no test coverage detected