(content: string)
| 91 | |
| 92 | // Helper to create plain text blocks (not collapsible) |
| 93 | const createTextBlock = (content: string): ContentBlock => ({ |
| 94 | type: 'text', |
| 95 | content, |
| 96 | }) |
| 97 | |
| 98 | describe('hasAnyExpandedBlocks', () => { |
| 99 | describe('empty and basic cases', () => { |
no outgoing calls
no test coverage detected