( streamManager: StreamManager )
| 114 | } |
| 115 | |
| 116 | function getProcessStreamWithCleanupForTests( |
| 117 | streamManager: StreamManager |
| 118 | ): ProcessStreamWithCleanupForTests { |
| 119 | return getPrivateMethodForTests<ProcessStreamWithCleanupForTests>( |
| 120 | streamManager, |
| 121 | "processStreamWithCleanup" |
| 122 | ); |
| 123 | } |
| 124 | |
| 125 | function getWorkspaceStreamsForTests(streamManager: StreamManager): Map<string, unknown> { |
| 126 | const workspaceStreams: unknown = Reflect.get(streamManager, "workspaceStreams"); |
no test coverage detected