Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/vscode-e2e/src/suite/tools/use-mcp-tool.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ suite("Roo Code use_mcp_tool Tool", function () {
}
})

test("Should validate MCP request message format and complete successfully", async function () {
test.skip("Should validate MCP request message format and complete successfully", async function () {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test has been changed to skip (using test.skip) to avoid interactive prompts that can cause CI failures. It would be helpful to add an inline comment explaining the reason for skipping this test, so future maintainers understand the context and can revisit it later if needed.

Suggested change
test.skip("Should validate MCP request message format and complete successfully", async function () {
test.skip("Should validate MCP request message format and complete successfully", async function () { // Skipped to avoid interactive prompts that can cause CI failures. See PR for context.

const api = globalThis.api
const messages: ClineMessage[] = []
let _taskCompleted = false
Expand Down
Loading