TestPopoverRenderHasNoMarker: no row in the rendered popover is prefixed with the old `▸ ` arrow or a 2-space marker. Selection is a colour change, not a marker.
(t *testing.T)
| 2769 | } |
| 2770 | msg := cmd() |
| 2771 | if msg == nil { |
| 2772 | continue |
| 2773 | } |
| 2774 | seen = append(seen, msg) |
| 2775 | if batch, ok := msg.(tea.BatchMsg); ok { |
| 2776 | for _, c := range batch { |
| 2777 | if c == nil { |
| 2778 | continue |
| 2779 | } |
| 2780 | bm, bcmd := m.Update(c()) |
| 2781 | m = bm |
| 2782 | queue = append(queue, bcmd) |
| 2783 | } |
nothing calls this directly
no test coverage detected