Skip to content

Commit 69ebfd3

Browse files
add file
1 parent 9230b79 commit 69ebfd3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/unit/mcp-tool-rename-aliases.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ describe("MCP legacy alias retirement (#4777) — discovery invariants", () => {
105105
}
106106
});
107107

108-
it("`loopover-mcp tools --json` reports the same 97-tool count the live server registers", async () => {
108+
it("`loopover-mcp tools --json` reports the same 98-tool count the live server registers", async () => {
109109
const { tools } = await client.listTools();
110110
const payload = JSON.parse(run(["tools", "--json"])) as {
111111
count: number;
112112
tools: Array<{ name: string }>;
113113
};
114114
expect(payload.count).toBe(tools.length);
115-
expect(payload.count).toBe(97);
115+
expect(payload.count).toBe(98);
116116
expect([...payload.tools.map((t) => t.name)].sort()).toEqual(
117117
[...tools.map((t) => t.name)].sort(),
118118
);

0 commit comments

Comments
 (0)