style: format expected json output in protocol test

This commit is contained in:
2026-04-30 22:25:47 -04:00
parent f68a5a8d9b
commit fc7200777e

View File

@@ -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 () => {