From aecc16f2d87b526bfd87f5344d52719cdfc999c2 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Sun, 26 Jul 2026 20:53:26 +0800 Subject: [PATCH] test(web): type the Code Mode fixture group row --- apps/web/tests/code-mode-fixture.snapshot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/tests/code-mode-fixture.snapshot.ts b/apps/web/tests/code-mode-fixture.snapshot.ts index cd0778cf91..46549179be 100644 --- a/apps/web/tests/code-mode-fixture.snapshot.ts +++ b/apps/web/tests/code-mode-fixture.snapshot.ts @@ -105,7 +105,7 @@ function visibleText(element: Element): string { /** Open the fixture history session (the alpha log carrying the run_code turn) and scroll to its tail. */ async function openFixtureSession(): Promise { const tree = await screen.findByRole('tree', { name: 'Sessions' }, { timeout: 10_000 }) - const group = within(tree).getByText('4 sessions').closest('[role="treeitem"]') + const group = within(tree).getByText('4 sessions').closest('[role="treeitem"]') if (group === null) throw new Error('fixture Workspace group missing') if (group.getAttribute('aria-expanded') === 'false') { fireEvent.click(within(group).getByText('fixture'))