Skip to content

Commit dbacec6

Browse files
committed
Fix formatting
1 parent 6e665b5 commit dbacec6

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

cli/scripts/cli-tests.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,6 @@ async function runTests() {
451451
"tools/list",
452452
);
453453

454-
455454
console.log(
456455
`\n${colors.YELLOW}=== Running Resource-Related Tests ===${colors.NC}`,
457456
);

cli/scripts/cli-tool-tests.js

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,21 @@ let FAILED_TESTS = 0;
2626
let SKIPPED_TESTS = 0;
2727
let TOTAL_TESTS = 0;
2828

29-
console.log(
30-
`${colors.YELLOW}=== MCP Inspector CLI Tool Tests ===${colors.NC}`,
31-
);
29+
console.log(`${colors.YELLOW}=== MCP Inspector CLI Tool Tests ===${colors.NC}`);
3230
console.log(
3331
`${colors.BLUE}This script tests the MCP Inspector CLI's tool-related functionality:${colors.NC}`,
3432
);
3533
console.log(`${colors.BLUE}- Tool discovery and listing${colors.NC}`);
36-
console.log(`${colors.BLUE}- JSON argument parsing (strings, numbers, booleans, objects, arrays)${colors.NC}`);
34+
console.log(
35+
`${colors.BLUE}- JSON argument parsing (strings, numbers, booleans, objects, arrays)${colors.NC}`,
36+
);
3737
console.log(`${colors.BLUE}- Tool schema validation${colors.NC}`);
38-
console.log(`${colors.BLUE}- Tool execution with various argument types${colors.NC}`);
39-
console.log(`${colors.BLUE}- Error handling for invalid tools and arguments${colors.NC}`);
38+
console.log(
39+
`${colors.BLUE}- Tool execution with various argument types${colors.NC}`,
40+
);
41+
console.log(
42+
`${colors.BLUE}- Error handling for invalid tools and arguments${colors.NC}`,
43+
);
4044
console.log(`\n`);
4145

4246
// Get directory paths
@@ -373,7 +377,6 @@ async function runTests() {
373377
'message="null"',
374378
);
375379

376-
377380
// Test 14: Multiple arguments with mixed types (using add tool)
378381
await runBasicTest(
379382
"json_args_multiple_mixed",

0 commit comments

Comments
 (0)