Skip to content

Commit cef275a

Browse files
committed
fix: Update integration test to use lowercase mode name
The test was using 'Ask' (capitalized) but modes are now lowercase 'ask'. This was causing the test to timeout as the mode validation failed.
1 parent a77211d commit cef275a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/vscode-e2e/src/suite/task.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ suite("Roo Code Task", function () {
2020
})
2121

2222
const taskId = await api.startNewTask({
23-
configuration: { mode: "Ask", alwaysAllowModeSwitch: true, autoApprovalEnabled: true },
23+
configuration: { mode: "ask", alwaysAllowModeSwitch: true, autoApprovalEnabled: true },
2424
text: "Hello world, what is your name? Respond with 'My name is ...'",
2525
})
2626

0 commit comments

Comments
 (0)