Skip to content

Commit 2f31ed2

Browse files
committed
fix: remove pointless test asserting deleted logging tools are absent
1 parent 9c84b94 commit 2f31ed2

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/smoke-tests/__tests__/e2e-mcp-discovery.test.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -133,16 +133,6 @@ describe('MCP Discovery (e2e)', () => {
133133
expect(names).toContain('debug_stack');
134134
});
135135

136-
it('does not include removed logging tools', async () => {
137-
const result = await harness.client.listTools();
138-
const names = result.tools.map((t) => t.name);
139-
expect(names).not.toContain('start_sim_log_cap');
140-
expect(names).not.toContain('stop_sim_log_cap');
141-
expect(names).not.toContain('start_device_log_cap');
142-
expect(names).not.toContain('stop_device_log_cap');
143-
expect(names).not.toContain('launch_app_logs_sim');
144-
});
145-
146136
it('includes project scaffolding tools', async () => {
147137
const result = await harness.client.listTools();
148138
const names = result.tools.map((t) => t.name);

0 commit comments

Comments
 (0)