Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fine-eels-find.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"roo-cline": patch
---

Improve the prompt for the "modes" e2e test
36 changes: 10 additions & 26 deletions apps/vscode-e2e/src/suite/modes.test.ts
Original file line number Diff line number Diff line change
@@ -1,40 +1,24 @@
import * as assert from "assert"

import type { ClineMessage } from "@roo-code/types"

import { waitUntilCompleted } from "./utils"

suite("Roo Code Modes", () => {
test("Should handle switching modes correctly", async () => {
const api = globalThis.api

const switchModesPrompt =
"For each mode (Architect, Ask, Debug) respond with the mode name and what it specializes in after switching to that mode."

const messages: ClineMessage[] = []
const modeSwitches: string[] = []
const modes: string[] = []

api.on("taskModeSwitched", (_taskId, mode) => {
console.log("taskModeSwitched", mode)
modeSwitches.push(mode)
})

api.on("message", ({ message }) => {
if (message.type === "say" && message.partial === false) {
messages.push(message)
}
})
globalThis.api.on("taskModeSwitched", (_taskId, mode) => modes.push(mode))

const switchModesTaskId = await api.startNewTask({
const switchModesTaskId = await globalThis.api.startNewTask({
configuration: { mode: "code", alwaysAllowModeSwitch: true, autoApprovalEnabled: true },
text: switchModesPrompt,
text: "For each of `architect`, `ask`, and `debug` use the `switch_mode` tool to switch to that mode.",
})

await waitUntilCompleted({ api, taskId: switchModesTaskId })
await api.cancelCurrentTask()
await waitUntilCompleted({ api: globalThis.api, taskId: switchModesTaskId })
await globalThis.api.cancelCurrentTask()

assert.ok(modeSwitches.includes("architect"))
assert.ok(modeSwitches.includes("ask"))
assert.ok(modeSwitches.includes("debug"))
assert.ok(modes.includes("architect"))
assert.ok(modes.includes("ask"))
assert.ok(modes.includes("debug"))
assert.ok(modes.length === 3)
})
})
Loading