From 69efb57355c4dedf5856931859f2948af18b6b60 Mon Sep 17 00:00:00 2001 From: Lex Christopherson Date: Wed, 18 Mar 2026 15:26:04 -0600 Subject: [PATCH] fix: remove stale git-commit assertion in worktree test after commit_docs removal The test asserted that captureIntegrationBranch commits metadata to git, but #1258 intentionally stopped committing .gsd/ artifacts. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/resources/extensions/gsd/tests/worktree.test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/resources/extensions/gsd/tests/worktree.test.ts b/src/resources/extensions/gsd/tests/worktree.test.ts index 7cd962fcc..9547b8d5c 100644 --- a/src/resources/extensions/gsd/tests/worktree.test.ts +++ b/src/resources/extensions/gsd/tests/worktree.test.ts @@ -108,10 +108,7 @@ async function main(): Promise { assertEq(readIntegrationBranch(repo, "M001"), "f-123-thing", "captureIntegrationBranch records the current branch"); - // Verify it was committed (not just written to disk) - const logOut = run("git log --oneline -1", repo); - assertTrue(logOut.includes("integration branch"), "metadata committed to git"); - + // .gsd/ metadata is written to disk only (not committed) since commit_docs removal rmSync(repo, { recursive: true, force: true }); }