We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 352d0cc commit 6887a37Copy full SHA for 6887a37
1 file changed
core/src/tests/components/AppMenu.spec.ts
@@ -191,7 +191,8 @@ describe('core: AppMenu', () => {
191
})
192
const wrapper = mount(AppMenu, { attachTo: document.body })
193
expect(wrapper.find('.app-menu__current-app').exists()).toBe(true)
194
- expect(wrapper.find('.app-menu__current-app-name').text()).toBe('Administration settings')
+ // Settings sub-section names are collapsed to a single "Settings" label.
195
+ expect(wrapper.find('.app-menu__current-app-name').text()).toBe('Settings')
196
197
198
it('prefers the active app over a settings entry when both are marked active', () => {
0 commit comments