This repository was archived by the owner on Oct 22, 2025. It is now read-only.
  
  
  
  
    
    
    
      
    
  
  
    
File tree Expand file tree Collapse file tree 5 files changed +592
-7
lines changed Expand file tree Collapse file tree 5 files changed +592
-7
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import { runActorDriverTests } from "./tests/actor-driver";
1717import  {  runActorErrorHandlingTests  }  from  "./tests/actor-error-handling" ; 
1818import  {  runActorHandleTests  }  from  "./tests/actor-handle" ; 
1919import  {  runActorInlineClientTests  }  from  "./tests/actor-inline-client" ; 
20+ import  {  runActorInspectorTests  }  from  "./tests/actor-inspector" ; 
2021import  {  runActorMetadataTests  }  from  "./tests/actor-metadata" ; 
2122import  {  runActorVarsTests  }  from  "./tests/actor-vars" ; 
2223import  {  runManagerDriverTests  }  from  "./tests/manager-driver" ; 
@@ -119,6 +120,8 @@ export function runDriverTests(
119120			runRawHttpDirectRegistryTests ( driverTestConfig ) ; 
120121
121122			runRawWebSocketDirectRegistryTests ( driverTestConfig ) ; 
123+ 
124+ 			runActorInspectorTests ( driverTestConfig ) ; 
122125		} ) ; 
123126	} 
124127} 
@@ -154,6 +157,10 @@ export async function createTestRuntime(
154157	const  config : RunConfig  =  RunConfigSchema . parse ( { 
155158		driver, 
156159		getUpgradeWebSocket : ( )  =>  upgradeWebSocket ! , 
160+ 		studio : { 
161+ 			enabled : true , 
162+ 			token : ( )  =>  "token" , 
163+ 		} , 
157164	} ) ; 
158165
159166	// Create router 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments