chore: remove explanatory comments from apiEntityModel test

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2026-05-12 08:07:22 +02:00
parent 2cf453f328
commit fc407b805e
@@ -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