From fc7200777ed3b8dfd2eea2bd952e7c49523e040b Mon Sep 17 00:00:00 2001 From: Dmytro Stanchiev Date: Thu, 30 Apr 2026 22:25:47 -0400 Subject: [PATCH] style: format expected json output in protocol test --- packages/mcp-server/test/protocol.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/mcp-server/test/protocol.test.ts b/packages/mcp-server/test/protocol.test.ts index 69bddcd..f417d5e 100644 --- a/packages/mcp-server/test/protocol.test.ts +++ b/packages/mcp-server/test/protocol.test.ts @@ -176,7 +176,9 @@ describe("MCP protocol unstableFilter", () => { const body = await response.json(); expect(body.result.content[0].type).toBe("text"); - expect(JSON.parse(body.result.content[0].text)).toEqual([{ title: "item" }]); + expect(JSON.parse(body.result.content[0].text)).toEqual([ + { title: "item" }, + ]); }); test("handler should forward unstableFilter=true for search_ebay", async () => {