chore: remove navigate_forward due to low usage counts (#934)

This commit is contained in:
Pavel Feldman
2025-08-22 14:02:33 -07:00
committed by GitHub
parent 2521a67b2f
commit 86eba2245a
5 changed files with 8 additions and 38 deletions

View File

@@ -68,12 +68,12 @@ test('check that trace is saved in workspace', async ({ startClient, server }, t
expect(file).toContain('traces');
});
test('should list all tools when listRoots is slow', async ({ startClient, server }, testInfo) => {
test('should list all tools when listRoots is slow', async ({ startClient }) => {
const { client } = await startClient({
clientName: 'Another custom client',
roots: [],
rootsResponseDelay: 1000,
});
const tools = await client.listTools();
expect(tools.tools.length).toBeGreaterThan(20);
expect(tools.tools.length).toBeGreaterThan(10);
});