Skip to content

Commit bd2a4b4

Browse files
chore: fix broken test
1 parent e9843e0 commit bd2a4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/transports/stdio.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describeWithMongoDB("StdioRunner", (integration) => {
3232
const response = await client.listTools();
3333
expect(response).toBeDefined();
3434
expect(response.tools).toBeDefined();
35-
expect(response.tools).toHaveLength(20);
35+
expect(response.tools).toHaveLength(21);
3636

3737
const sortedTools = response.tools.sort((a, b) => a.name.localeCompare(b.name));
3838
expect(sortedTools[0]?.name).toBe("aggregate");

0 commit comments

Comments
 (0)