Skip to content

Commit 3f86dc6

Browse files
committed
Fix extension mcp-tool-e2e.integration.test.ts
1 parent e60dcfa commit 3f86dc6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

extensions/vscode/test/suite/mcp-tool-e2e.integration.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,17 +256,17 @@ suite('MCP Server Tool Integration Tests', () => {
256256
console.log(`[mcp-tool-e2e] list_mrva_run_results result:\n${text}`);
257257
});
258258

259-
test('Annotation and audit tools should NOT appear by default', async function () {
259+
test('Annotation and audit tools should appear by default', async function () {
260260
this.timeout(15_000);
261261

262262
const response = await client.listTools();
263263
const toolNames = response.tools.map(t => t.name);
264264

265-
assert.ok(!toolNames.includes('annotation_create'), 'annotation_create should NOT be registered by default');
266-
assert.ok(!toolNames.includes('audit_store_findings'), 'audit_store_findings should NOT be registered by default');
267-
assert.ok(!toolNames.includes('query_results_cache_lookup'), 'query_results_cache_lookup should NOT be registered by default');
265+
assert.ok(toolNames.includes('annotation_create'), 'annotation_create should be registered by default');
266+
assert.ok(toolNames.includes('audit_store_findings'), 'audit_store_findings should be registered by default');
267+
assert.ok(toolNames.includes('query_results_cache_lookup'), 'query_results_cache_lookup should be registered by default');
268268

269-
console.log('[mcp-tool-e2e] Confirmed annotation/audit/cache tools are not registered by default');
269+
console.log('[mcp-tool-e2e] Confirmed annotation/audit/cache tools are registered by default');
270270
});
271271
});
272272

0 commit comments

Comments
 (0)