diff --git a/packages/opencode/test/control-plane/workspace.test.ts b/packages/opencode/test/control-plane/workspace.test.ts index 36385ca56b..d33d4a1aa7 100644 --- a/packages/opencode/test/control-plane/workspace.test.ts +++ b/packages/opencode/test/control-plane/workspace.test.ts @@ -52,7 +52,10 @@ const workspaceLayer = (experimentalWorkspaces: boolean) => ]), [ [RuntimeFlags.node, RuntimeFlags.layer({ experimentalWorkspaces })], - [InstanceBootstrap.node, Layer.succeed(InstanceBootstrap.Service, InstanceBootstrap.Service.of({ run: Effect.void }))], + [ + InstanceBootstrap.node, + Layer.succeed(InstanceBootstrap.Service, InstanceBootstrap.Service.of({ run: Effect.void })), + ], ], ) diff --git a/packages/opencode/test/session/llm.test.ts b/packages/opencode/test/session/llm.test.ts index beb41574c3..45b25a1a03 100644 --- a/packages/opencode/test/session/llm.test.ts +++ b/packages/opencode/test/session/llm.test.ts @@ -73,10 +73,12 @@ const drainWith = (layer: Layer.Layer, input: LLM.StreamInput) => ) }) -function llmLayerWithExecutor(options: { - executor?: Layer.Layer - flags?: Partial -} = {}) { +function llmLayerWithExecutor( + options: { + executor?: Layer.Layer + flags?: Partial + } = {}, +) { return AppNodeBuilder.build(LLM.node, [ [RuntimeFlags.node, RuntimeFlags.layer(options.flags)], ...(options.executor ? ([[LayerNodePlatform.requestExecutor, options.executor]] as const) : []),