From 357a74714acb37d21b5f0b8f14bae31aa00e0f2a Mon Sep 17 00:00:00 2001 From: Kit Langton Date: Fri, 8 May 2026 23:12:08 -0400 Subject: [PATCH] fix(test): set OPENCODE_EXPERIMENTAL_WORKSPACES in fence header test (#26466) --- .../opencode/test/server/httpapi-instance.test.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/packages/opencode/test/server/httpapi-instance.test.ts b/packages/opencode/test/server/httpapi-instance.test.ts index 930cc6d0aa..7a181aac65 100644 --- a/packages/opencode/test/server/httpapi-instance.test.ts +++ b/packages/opencode/test/server/httpapi-instance.test.ts @@ -14,17 +14,22 @@ import { disposeAllInstances, tmpdirScoped } from "../fixture/fixture" import { testEffect } from "../lib/effect" // Flip the experimental HttpApi flag so backend selection telemetry on the -// production routes reports the right backend, and reset the database around -// the test so per-instance state does not leak between runs. resetDatabase() -// already calls disposeAllInstances(), so we don't repeat it. +// production routes reports the right backend, and the experimental +// workspaces flag so SyncEvent.run actually writes to EventSequenceTable +// (the source of truth the fence middleware reads). Reset the database +// around the test so per-instance state does not leak between runs. +// resetDatabase() already calls disposeAllInstances(), so we don't repeat it. const testStateLayer = Layer.effectDiscard( Effect.gen(function* () { const originalHttpApi = Flag.OPENCODE_EXPERIMENTAL_HTTPAPI + const originalWorkspaces = Flag.OPENCODE_EXPERIMENTAL_WORKSPACES Flag.OPENCODE_EXPERIMENTAL_HTTPAPI = true + Flag.OPENCODE_EXPERIMENTAL_WORKSPACES = true yield* Effect.promise(() => resetDatabase()) yield* Effect.addFinalizer(() => Effect.promise(async () => { Flag.OPENCODE_EXPERIMENTAL_HTTPAPI = originalHttpApi + Flag.OPENCODE_EXPERIMENTAL_WORKSPACES = originalWorkspaces await resetDatabase() }), )