chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-29 16:58:51 +00:00
parent bc5ce5eab1
commit de185559dd
5 changed files with 13 additions and 10 deletions
+3 -1
View File
@@ -25,7 +25,9 @@ import { testEffect } from "../lib/effect"
const weird = process.platform === "win32" ? "space file.txt" : "tab\tfile.txt"
const layer = LayerNode.compile(LayerNode.group([Vcs.node, Git.node, EventV2Bridge.node, FSUtil.node, CrossSpawnSpawner.node]))
const layer = LayerNode.compile(
LayerNode.group([Vcs.node, Git.node, EventV2Bridge.node, FSUtil.node, CrossSpawnSpawner.node]),
)
const it = testEffect(layer)
const worktreeIt = testEffect(Layer.mergeAll(layer, testInstanceStoreLayer))
@@ -18,7 +18,9 @@ afterEach(async () => {
await disposeAllInstances()
})
const it = testEffect(LayerNode.compile(LayerNode.group([Provider.node, Env.node, Plugin.node, CrossSpawnSpawner.node])))
const it = testEffect(
LayerNode.compile(LayerNode.group([Provider.node, Env.node, Plugin.node, CrossSpawnSpawner.node])),
)
it.live("headerTimeout does not abort delayed SSE body after headers arrive", () =>
Effect.gen(function* () {
@@ -13,12 +13,7 @@ import { EventV2Bridge } from "../../src/event-v2-bridge"
const questionLayer = LayerNode.compile(LayerNode.group([Question.node, EventV2Bridge.node, CrossSpawnSpawner.node]))
const it = testEffect(questionLayer)
const lifecycle = testEffect(
Layer.mergeAll(
questionLayer,
testInstanceStoreLayer,
),
)
const lifecycle = testEffect(Layer.mergeAll(questionLayer, testInstanceStoreLayer))
const askEffect = Effect.fn("QuestionTest.ask")(function* (input: {
sessionID: SessionID
@@ -18,7 +18,9 @@ import { ProviderV2 } from "@opencode-ai/core/provider"
import { ModelV2 } from "@opencode-ai/core/model"
const it = testEffect(
LayerNode.compile(LayerNode.group([Session.node, SessionRevert.node, Snapshot.node, SessionProjector.node, CrossSpawnSpawner.node])),
LayerNode.compile(
LayerNode.group([Session.node, SessionRevert.node, Snapshot.node, SessionProjector.node, CrossSpawnSpawner.node]),
),
)
const user = Effect.fn("test.user")(function* (sessionID: SessionID, agent = "default") {
+3 -1
View File
@@ -20,7 +20,9 @@ const ctx = {
ask: () => Effect.void,
}
const it = testEffect(LayerNode.compile(LayerNode.group([Question.node, EventV2Bridge.node, Truncate.node, Agent.node])))
const it = testEffect(
LayerNode.compile(LayerNode.group([Question.node, EventV2Bridge.node, Truncate.node, Agent.node])),
)
const pending = Effect.fn("QuestionToolTest.pending")(function* (question: Question.Interface) {
const events = yield* EventV2Bridge.Service