(t *testing.T)
| 90 | } |
| 91 | |
| 92 | func TestDashboard_ActionsMenuOpensOnA(t *testing.T) { |
| 93 | d := testDashboard(1) |
| 94 | d.width = 80 |
| 95 | d.height = 40 |
| 96 | d.updateViewportSize() |
| 97 | d.rebuildViewportContent() |
| 98 | |
| 99 | d, _ = updateDashboard(d, keyPressMsg("a")) |
| 100 | assert.NotNil(t, d.overlay) |
| 101 | } |
| 102 | |
| 103 | func TestDashboard_ActionsMenuCloses(t *testing.T) { |
| 104 | d := testDashboard(1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…