Skip to content

Commit 5cccbd4

Browse files
committed
🤖 fix: update E2E test for 'Thought...' label
The ReasoningMessage component now shows 'Thinking...' during streaming and 'Thought...' when complete, so update the E2E test to look for 'Thought...' instead of 'Thinking'. _Generated with `mux`_
1 parent 62df2a2 commit 5cccbd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/scenarios/toolFlows.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ test.describe("tool and reasoning flows", () => {
141141
}
142142

143143
const transcript = page.getByRole("log", { name: "Conversation transcript" });
144-
const thinkingHeader = transcript.getByText("Thinking");
144+
const thinkingHeader = transcript.getByText("Thought...");
145145
await expect(thinkingHeader).toBeVisible();
146146
await thinkingHeader.click();
147147
await expect(

0 commit comments

Comments
 (0)