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";
17
17
import { runActorErrorHandlingTests } from "./tests/actor-error-handling" ;
18
18
import { runActorHandleTests } from "./tests/actor-handle" ;
19
19
import { runActorInlineClientTests } from "./tests/actor-inline-client" ;
20
+ import { runActorInspectorTests } from "./tests/actor-inspector" ;
20
21
import { runActorMetadataTests } from "./tests/actor-metadata" ;
21
22
import { runActorVarsTests } from "./tests/actor-vars" ;
22
23
import { runManagerDriverTests } from "./tests/manager-driver" ;
@@ -119,6 +120,8 @@ export function runDriverTests(
119
120
runRawHttpDirectRegistryTests ( driverTestConfig ) ;
120
121
121
122
runRawWebSocketDirectRegistryTests ( driverTestConfig ) ;
123
+
124
+ runActorInspectorTests ( driverTestConfig ) ;
122
125
} ) ;
123
126
}
124
127
}
@@ -154,6 +157,10 @@ export async function createTestRuntime(
154
157
const config : RunConfig = RunConfigSchema . parse ( {
155
158
driver,
156
159
getUpgradeWebSocket : ( ) => upgradeWebSocket ! ,
160
+ studio : {
161
+ enabled : true ,
162
+ token : ( ) => "token" ,
163
+ } ,
157
164
} ) ;
158
165
159
166
// Create router
You can’t perform that action at this time.
0 commit comments