From e6cf075363ed4b0b1446b22a49d56e05ccadd216 Mon Sep 17 00:00:00 2001 From: Vance Ingalls Date: Thu, 9 Jul 2026 17:49:19 -0700 Subject: [PATCH] test(studio): rename unpin test to match what it actually verifies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Review of the pin-aware group list refactor flagged the test name claiming the group "closes" on unpin — it doesn't assert that, and structurally the group re-opens (togglePin never touches openGroupId). Retitled to describe only the return-to-stack behavior actually tested. Co-Authored-By: Claude Sonnet 5 --- packages/studio/src/components/editor/PropertyPanel.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/studio/src/components/editor/PropertyPanel.test.tsx b/packages/studio/src/components/editor/PropertyPanel.test.tsx index b2671a45e..27007860b 100644 --- a/packages/studio/src/components/editor/PropertyPanel.test.tsx +++ b/packages/studio/src/components/editor/PropertyPanel.test.tsx @@ -783,7 +783,7 @@ describe("PropertyPanel — pinning", () => { ); it( - "unpinning returns the group to its normal stack position and it closes", + "unpinning returns the group to its normal accordion stack position", async () => { const { host, root } = await renderPanel(true); const pinButton = host.querySelector('[data-flat-group-pin="true"]');