From b8c0144c5e76cc905f2d28f5931945f390e0d899 Mon Sep 17 00:00:00 2001 From: Ecko95 <8972676+Ecko95@users.noreply.github.com> Date: Sun, 21 Jun 2026 02:35:09 +0200 Subject: [PATCH] test: fix two stale expectations the newly-enabled CI surfaced MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both pre-existing on gits, unrelated to any in-flight feature work: - CodexAdapter.test: visual-plan (PR #30) wired visualPlanMcpUrl into the codex spawn input; add it to the expected object. - DesktopAppIdentity.test: T3 Code→GITS rebrand (APP_BASE_NAME="GITS"); the commit-override path now yields "GITS (Alpha)". The legacy userData PATH expectation stays "T3 Code (Alpha)" (migration back-compat). Full suite: 14/14 packages green. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/desktop/src/app/DesktopAppIdentity.test.ts | 4 ++-- apps/server/src/provider/Layers/CodexAdapter.test.ts | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/app/DesktopAppIdentity.test.ts b/apps/desktop/src/app/DesktopAppIdentity.test.ts index f95fd1bef71..81d12bc4e8d 100644 --- a/apps/desktop/src/app/DesktopAppIdentity.test.ts +++ b/apps/desktop/src/app/DesktopAppIdentity.test.ts @@ -156,8 +156,8 @@ describe("DesktopAppIdentity", () => { const identity = yield* DesktopAppIdentity.DesktopAppIdentity; yield* identity.configure; - assert.deepEqual(calls.setName, ["T3 Code (Alpha)"]); - assert.equal(calls.setAboutPanelOptions[0]?.applicationName, "T3 Code (Alpha)"); + assert.deepEqual(calls.setName, ["GITS (Alpha)"]); + assert.equal(calls.setAboutPanelOptions[0]?.applicationName, "GITS (Alpha)"); assert.equal(calls.setAboutPanelOptions[0]?.applicationVersion, "1.2.3"); assert.equal(calls.setAboutPanelOptions[0]?.version, "0123456789ab"); assert.deepEqual(calls.setDockIcon, ["/icon.png"]); diff --git a/apps/server/src/provider/Layers/CodexAdapter.test.ts b/apps/server/src/provider/Layers/CodexAdapter.test.ts index 3ae98ec248c..51f13a86917 100644 --- a/apps/server/src/provider/Layers/CodexAdapter.test.ts +++ b/apps/server/src/provider/Layers/CodexAdapter.test.ts @@ -283,6 +283,7 @@ validationLayer("CodexAdapterLive validation", (it) => { providerInstanceId: ProviderInstanceId.make("codex"), serviceTier: "fast", threadId: asThreadId("thread-1"), + visualPlanMcpUrl: "http://127.0.0.1:0/api/gits/visual-plan/mcp", runtimeMode: "full-access", }); }),