(broker: QuestionService)
| 178 | } |
| 179 | |
| 180 | function firstPendingQuestionId(broker: QuestionService): string | undefined { |
| 181 | return (broker as unknown as { |
| 182 | _pending: Map<string, { questionId: string }>; |
| 183 | })._pending.values().next().value?.questionId; |
| 184 | } |
| 185 | |
| 186 | // --- Tests ----------------------------------------------------------------- |
| 187 |
no test coverage detected