From 93b1ccc029c4b8d919e2d3fce3f036d243021684 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Thu, 14 May 2026 22:00:48 +0000 Subject: [PATCH] chore: generate --- packages/opencode/test/effect/runtime-flags.test.ts | 4 +--- packages/opencode/test/project/project.test.ts | 5 +---- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/opencode/test/effect/runtime-flags.test.ts b/packages/opencode/test/effect/runtime-flags.test.ts index 4e6c7f9fad..d5688964ae 100644 --- a/packages/opencode/test/effect/runtime-flags.test.ts +++ b/packages/opencode/test/effect/runtime-flags.test.ts @@ -72,9 +72,7 @@ describe("RuntimeFlags", () => { it.effect("experimentalIconDiscovery reads OPENCODE_EXPERIMENTAL_ICON_DISCOVERY", () => Effect.gen(function* () { - const flags = yield* readFlags.pipe( - Effect.provide(fromConfig({ OPENCODE_EXPERIMENTAL_ICON_DISCOVERY: "true" })), - ) + const flags = yield* readFlags.pipe(Effect.provide(fromConfig({ OPENCODE_EXPERIMENTAL_ICON_DISCOVERY: "true" }))) expect(flags.experimentalIconDiscovery).toBe(true) }), diff --git a/packages/opencode/test/project/project.test.ts b/packages/opencode/test/project/project.test.ts index 88fc71718f..5688d13d1a 100644 --- a/packages/opencode/test/project/project.test.ts +++ b/packages/opencode/test/project/project.test.ts @@ -87,10 +87,7 @@ const failureIt = (failArg: string) => testEffect(Layer.mergeAll(projectLayerWithFailure(failArg), CrossSpawnSpawner.defaultLayer)) const iconDiscoveryIt = testEffect( - Layer.provideMerge( - projectLayerWithRuntimeFlags({ experimentalIconDiscovery: true }), - CrossSpawnSpawner.defaultLayer, - ), + Layer.provideMerge(projectLayerWithRuntimeFlags({ experimentalIconDiscovery: true }), CrossSpawnSpawner.defaultLayer), ) function waitForProjectIcon(id: ProjectID, attempts = 50): Effect.Effect {