File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/services/marketplace/__tests__ Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11// npx vitest services/marketplace/__tests__/MarketplaceManager.spec.ts
22
3+ import type { MarketplaceItem } from "@roo-code/types"
4+
35import { MarketplaceManager } from "../MarketplaceManager"
4- import { MarketplaceItem } from "../types"
56
67// Mock axios
78vi . mock ( "axios" )
@@ -118,6 +119,7 @@ describe("MarketplaceManager", () => {
118119 name : "Test MCP" ,
119120 description : "A test MCP" ,
120121 type : "mcp" ,
122+ url : "https://example.com/test-mcp" ,
121123 content : '{"command": "node", "args": ["server.js"]}' ,
122124 } ,
123125 ]
@@ -206,6 +208,7 @@ describe("MarketplaceManager", () => {
206208 name : "Test MCP" ,
207209 description : "A test MCP" ,
208210 type : "mcp" ,
211+ url : "https://example.com/test-mcp" ,
209212 content : '{"command": "node", "args": ["server.js"]}' ,
210213 }
211214
@@ -246,6 +249,7 @@ describe("MarketplaceManager", () => {
246249 name : "Test MCP" ,
247250 description : "A test MCP" ,
248251 type : "mcp" ,
252+ url : "https://example.com/test-mcp" ,
249253 content : '{"command": "node", "args": ["server.js"]}' ,
250254 }
251255
You can’t perform that action at this time.
0 commit comments