chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-30 16:19:11 +00:00
commit e78726854a
2 changed files with 5 additions and 2 deletions

View file

@ -636,4 +636,3 @@ export const layerWith = (options?: LayerOptions) =>
const layer = layerWith()
export const node = makeGlobalNode({ service: Service, layer: layer, deps: [Database.node] })

View file

@ -471,7 +471,11 @@ export function withCliFixture<A, E>(
// and hit endpoints on `opencode.serve()` without rolling their own fetch.
}).pipe(
Effect.provide(
Layer.mergeAll(TestLLMServer.layer, FetchHttpClient.layer, AppNodeBuilder.build(LayerNode.group([FSUtil.node, AppProcess.node]))),
Layer.mergeAll(
TestLLMServer.layer,
FetchHttpClient.layer,
AppNodeBuilder.build(LayerNode.group([FSUtil.node, AppProcess.node])),
),
),
)
}