Skip to content

Commit 8d154f5

Browse files
committed
fix(inspector): bring back the actor inspector
1 parent 5a74e24 commit 8d154f5

File tree

5 files changed

+592
-7
lines changed

5 files changed

+592
-7
lines changed

packages/core/src/driver-test-suite/mod.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { runActorDriverTests } from "./tests/actor-driver";
1717
import { runActorErrorHandlingTests } from "./tests/actor-error-handling";
1818
import { runActorHandleTests } from "./tests/actor-handle";
1919
import { runActorInlineClientTests } from "./tests/actor-inline-client";
20+
import { runActorInspectorTests } from "./tests/actor-inspector";
2021
import { runActorMetadataTests } from "./tests/actor-metadata";
2122
import { runActorVarsTests } from "./tests/actor-vars";
2223
import { 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

0 commit comments

Comments
 (0)