File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -124,13 +124,19 @@ describe("App Store", () => {
124124    describe ( "load" ,  ( )  =>  { 
125125      test ( "App Store > actions > load > load stores with load method" ,  async  ( )  =>  { 
126126        const  appStore  =  useAppStore ( ) 
127-       
128-         const  userStore  =  {  $id : "userStore" ,  load : vi . fn ( ) . mockResolvedValue ( )  } 
129-         const  geodeStore  =  {  $id : "geodeStore" ,  load : vi . fn ( ) . mockResolvedValue ( )  } 
130-       
127+ 
128+         const  userStore  =  { 
129+           $id : "userStore" , 
130+           load : vi . fn ( ) . mockResolvedValue ( ) , 
131+         } 
132+         const  geodeStore  =  { 
133+           $id : "geodeStore" , 
134+           load : vi . fn ( ) . mockResolvedValue ( ) , 
135+         } 
136+ 
131137        appStore . registerStore ( userStore ) 
132138        appStore . registerStore ( geodeStore ) 
133-        
139+ 
134140        const  snapshot  =  { 
135141          userStore : {  some : "data"  } , 
136142          geodeStore : {  other : "data"  } , 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments