diff --git a/packages/@core/forward/stores/src/modules/tabbar.test.ts b/packages/@core/forward/stores/src/modules/tabbar.test.ts index 90feea1f..a9016b69 100644 --- a/packages/@core/forward/stores/src/modules/tabbar.test.ts +++ b/packages/@core/forward/stores/src/modules/tabbar.test.ts @@ -71,20 +71,6 @@ describe('useCoreAccessStore', () => { // expect(router.replace).toHaveBeenCalled(); }); - it('returns all tabs including affix tabs', () => { - const store = useCoreTabbarStore(); - store.tabs = [ - { fullPath: '/home', meta: {}, name: 'Home', path: '/home' }, - ] as any; - store.affixTabs = [ - { meta: { hideInTab: false }, path: '/dashboard' }, - ] as any; - - const result = store.getTabs; - expect(result.length).toBe(2); - expect(result.find((tab) => tab.path === '/dashboard')).toBeDefined(); - }); - it('closes a non-affix tab', () => { const store = useCoreTabbarStore(); const tab: any = { @@ -135,7 +121,7 @@ describe('useCoreAccessStore', () => { store.tabs.push(normalTab); store.affixTabs.push(affixTab); expect(store.getTabs).toContainEqual(normalTab); - // expect(store.getTabs).toContainEqual(affixTab); + expect(store.affixTabs).toContainEqual(affixTab); }); it('navigates to a specific tab', async () => { diff --git a/packages/locales/src/langs/en-US.yaml b/packages/locales/src/langs/en-US.yaml index 1e7b110e..cb0a129f 100644 --- a/packages/locales/src/langs/en-US.yaml +++ b/packages/locales/src/langs/en-US.yaml @@ -244,8 +244,8 @@ preferences: mode-auto-scroll: Scroll hide/display footer: title: Footer - visible: Fixed at the bottom - fixed: Display Footer + visible: Display Footer + fixed: Fixed at the bottom copyright: title: Copyright enable: Enable copyright