(t *testing.T)
| 210 | } |
| 211 | |
| 212 | func TestDashboard_EmptyStateShowsMessage(t *testing.T) { |
| 213 | d := testDashboard(0) |
| 214 | d, _ = updateDashboard(d, tea.WindowSizeMsg{Width: 80, Height: 24}) |
| 215 | |
| 216 | view := d.View() |
| 217 | assert.Contains(t, view, "There are no applications installed") |
| 218 | assert.Contains(t, view, "new app") |
| 219 | } |
| 220 | |
| 221 | // Helpers |
| 222 |
nothing calls this directly
no test coverage detected
searching dependent graphs…