From fc407b805ef3fa50384814ded667431f98539bbd Mon Sep 17 00:00:00 2001 From: benjdlambert Date: Tue, 12 May 2026 08:07:22 +0200 Subject: [PATCH] chore: remove explanatory comments from apiEntityModel test Signed-off-by: benjdlambert --- packages/catalog-model/src/kinds/apiEntityModel.test.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/catalog-model/src/kinds/apiEntityModel.test.ts b/packages/catalog-model/src/kinds/apiEntityModel.test.ts index 7e58b6bd2d..9189d0a29a 100644 --- a/packages/catalog-model/src/kinds/apiEntityModel.test.ts +++ b/packages/catalog-model/src/kinds/apiEntityModel.test.ts @@ -34,14 +34,8 @@ describe('apiEntityModel v1alpha2 dispatch', () => { expect(mcp).toBeDefined(); expect(openapi).toBeDefined(); - - // The mcp-server specType entry has a distinct description; the default - // entry falls back to the kind-level description. If these are equal, - // dispatch is broken. expect(mcp!.description).not.toBe(openapi!.description); - // The mcp-server schema requires spec.remotes; the default schema requires - // spec.definition. Inspect the compiled JSON Schema directly. const mcpSpecRequired = (mcp!.jsonSchema.properties as any).spec .required as string[]; const openapiSpecRequired = (openapi!.jsonSchema.properties as any).spec