(uuid: string)
| 14 | } |
| 15 | |
| 16 | function systemMessage(uuid: string): Message { |
| 17 | return { |
| 18 | uuid, |
| 19 | type: 'system', |
| 20 | message: 'system', |
| 21 | level: 'info', |
| 22 | } as unknown as Message |
| 23 | } |
| 24 | |
| 25 | describe('dispatchReplMessageSelectorSummarize', () => { |
| 26 | test('warns and exits when the selected message is no longer in the active compact context', async () => { |
no outgoing calls
no test coverage detected