Răsfoiți Sursa

test(web): stop pre-clicking the fixture group in the title snapshot

The Intent's current-group effect already expands the target workspace;
with intent no longer forcing expansion, the header click collapsed it.
imccyu 2 luni în urmă
părinte
comite
ad419065a0
1 a modificat fișierele cu 4 adăugiri și 4 ștergeri
  1. 4 4
      apps/web/tests/session-title.snapshot.ts

+ 4 - 4
apps/web/tests/session-title.snapshot.ts

@@ -94,10 +94,10 @@ it('projects initial and revised durable titles through the built nine-plugin fi
   })
 
   const tree = await screen.findByRole('tree', { name: 'Sessions' }, { timeout: 10_000 })
-  const projectCount = await within(tree).findByText('4 sessions')
-  const projectRow = projectCount.closest<HTMLElement>('[role="treeitem"]')
-  if (projectRow === null) throw new Error('fixture project row missing')
-  fireEvent.click(projectRow)
+  // The fixture Intent selects the workspace, so the current-group effect
+  // already expanded it; clicking the header would now collapse (the twist
+  // stays live since intent stopped forcing expansion).
+  await within(tree).findByText('4 sessions')
 
   const initialLabel = 'Fixture 历史会话'
   const initialRowLabel = await screen.findByText(initialLabel)