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.
This commit is contained in:
imccyu
2026-07-26 02:10:59 +08:00
parent 4ae86001a5
commit ad419065a0
+4 -4
View File
@@ -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)