From a447e26272c6e9114f71f53f89d7a78962fb2367 Mon Sep 17 00:00:00 2001 From: imccyu <276526105+imccyu@users.noreply.github.com> Date: Wed, 29 Jul 2026 03:07:06 +0800 Subject: [PATCH] fix: test --- packages/client/ui-conversation/tests/input-matrix.spec.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/ui-conversation/tests/input-matrix.spec.tsx b/packages/client/ui-conversation/tests/input-matrix.spec.tsx index 1f01aa0512..29769afd5d 100644 --- a/packages/client/ui-conversation/tests/input-matrix.spec.tsx +++ b/packages/client/ui-conversation/tests/input-matrix.spec.tsx @@ -124,7 +124,7 @@ describe('matrix row: claimed', () => { describe('matrix row: submitting', () => { it('locks enter, renders pending + read-only, keeps the claim snapshot on the currency', async () => { const submit = vi.fn(() => new Promise(() => {})) // never settles - const { view, textarea, shell, sink, claim } = bench({ submit }) + const { textarea, shell, sink, claim } = bench({ submit }) claim() fireEvent.keyDown(textarea, { key: 'Enter' }) expect(shell.snapshot.phase).toBe('submitting')