chore: fix test case
parent
db76325d68
commit
3f67b50780
|
@ -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', () => {
|
||||
|
|
Loading…
Reference in New Issue