chore: fix test case

pull/48/MERGE
invalid w 2024-07-10 15:55:56 +08:00
parent db76325d68
commit 3f67b50780
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ describe('useCoreAccessStore', () => {
const store = useCoreTabbarStore();
store.cachedTabs.add('Home');
store.cachedTabs.add('About');
expect(store.cachedTabs).toEqual(['Home', 'About']);
expect(store.cachedTabs).toEqual(new Set(['Home', 'About']));
});
it('returns all tabs, including affix tabs', () => {