Explorar el Código

chore: fix test case

invalid w hace 8 meses
padre
commit
3f67b50780
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/@core/forward/stores/src/modules/tabbar.test.ts

+ 1 - 1
packages/@core/forward/stores/src/modules/tabbar.test.ts

@@ -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', () => {