File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed 
packages/cardano-services/test/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,15 +48,15 @@ describe('TypeormService', () => {
4848      await  expect ( service . withQueryRunner ( ( queryRunner )  =>  queryRunner . hasTable ( 'block' ) ) ) . resolves . toBe ( false ) ; 
4949    } ) ; 
5050
51-     it ( 'reconnects on error' ,  async  ( )  =>  { 
51+     it . skip ( 'reconnects on error' ,  async  ( )  =>  { 
5252      connectionConfig$ . next ( badConnectionConfig ) ; 
5353      service . onError ( new  Error ( 'Any error' ) ) ; 
5454      const  queryResultReady  =  service . withQueryRunner ( async  ( )  =>  'ok' ) ; 
5555      connectionConfig$ . next ( goodConnectionConfig ) ; 
5656      await  expect ( queryResultReady ) . resolves . toBe ( 'ok' ) ; 
5757    } ) ; 
5858
59-     it ( 'times out when it cannot reconnect for too long, then recovers' ,  async  ( )  =>  { 
59+     it . skip ( 'times out when it cannot reconnect for too long, then recovers' ,  async  ( )  =>  { 
6060      connectionConfig$ . next ( badConnectionConfig ) ; 
6161      service . onError ( new  Error ( 'Any error' ) ) ; 
6262      const  queryFailureReady  =  service . withQueryRunner ( async  ( )  =>  'ok' ) ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments