( entries: Array<[string, ChoiceImportDecision["mode"]]>, )
| 160 | } |
| 161 | |
| 162 | function decisions( |
| 163 | entries: Array<[string, ChoiceImportDecision["mode"]]>, |
| 164 | ): ChoiceImportDecision[] { |
| 165 | return entries.map(([choiceId, mode]) => ({ choiceId, mode })); |
| 166 | } |
| 167 | |
| 168 | beforeEach(() => { |
| 169 | uuidMock.counter = 0; |
no outgoing calls
no test coverage detected