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 db76325 commit 3f67b50Copy full SHA for 3f67b50
packages/@core/forward/stores/src/modules/tabbar.test.ts
@@ -101,7 +101,7 @@ describe('useCoreAccessStore', () => {
101
const store = useCoreTabbarStore();
102
store.cachedTabs.add('Home');
103
store.cachedTabs.add('About');
104
- expect(store.cachedTabs).toEqual(['Home', 'About']);
+ expect(store.cachedTabs).toEqual(new Set(['Home', 'About']));
105
});
106
107
it('returns all tabs, including affix tabs', () => {
0 commit comments