Remove desktop list pane tabs
This commit is contained in:
@@ -275,6 +275,22 @@ func TestUIListPanelTopSectionsMatchAcrossDesktopAndPhoneForEntries(t *testing.T
|
||||
}
|
||||
}
|
||||
|
||||
func TestUINavigationHeaderMatchesAcrossDesktopAndPhoneForEntries(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
desktop := newUIWithModel("desktop", vault.Model{})
|
||||
desktop.state.Section = appstate.SectionEntries
|
||||
phone := newUIWithModel("phone", vault.Model{})
|
||||
phone.state.Section = appstate.SectionEntries
|
||||
|
||||
if got := desktop.navigationHeaderLabel(); got != "Group Tools" {
|
||||
t.Fatalf("desktop.navigationHeaderLabel() = %q, want %q", got, "Group Tools")
|
||||
}
|
||||
if got := phone.navigationHeaderLabel(); got != "Group Tools" {
|
||||
t.Fatalf("phone.navigationHeaderLabel() = %q, want %q", got, "Group Tools")
|
||||
}
|
||||
}
|
||||
|
||||
func TestUICurrentVaultSummary(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user