File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ describe('UpdateOs Store', () => {
5858  describe ( 'State and Getters' ,  ( )  =>  { 
5959    it ( 'should initialize with correct default values' ,  ( )  =>  { 
6060      expect ( store . checkForUpdatesLoading ) . toBe ( false ) ; 
61-       expect ( store . modalOpen ) . toBe ( false ) ; 
61+       expect ( store . updateOsModalVisible ) . toBe ( false ) ; 
6262    } ) ; 
6363
6464    it ( 'should have computed properties with the right types' ,  ( )  =>  { 
@@ -86,15 +86,15 @@ describe('UpdateOs Store', () => {
8686      await  store . localCheckForUpdate ( ) ; 
8787
8888      expect ( WebguiCheckForUpdate ) . toHaveBeenCalled ( ) ; 
89-       expect ( store . modalOpen ) . toBe ( true ) ; 
89+       expect ( store . updateOsModalVisible ) . toBe ( true ) ; 
9090    } ) ; 
9191
9292    it ( 'should set modal open state' ,  ( )  =>  { 
9393      store . setModalOpen ( true ) ; 
94-       expect ( store . modalOpen ) . toBe ( true ) ; 
94+       expect ( store . updateOsModalVisible ) . toBe ( true ) ; 
9595
9696      store . setModalOpen ( false ) ; 
97-       expect ( store . modalOpen ) . toBe ( false ) ; 
97+       expect ( store . updateOsModalVisible ) . toBe ( false ) ; 
9898    } ) ; 
9999
100100    it ( 'should handle errors when checking for updates' ,  async  ( )  =>  { 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments