We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d99370 commit ac63f30Copy full SHA for ac63f30
src/agents/tools/nodes-tool.test.ts
@@ -7,7 +7,7 @@ const gatewayMocks = vi.hoisted(() => ({
7
8
const nodeUtilsMocks = vi.hoisted(() => ({
9
resolveNodeId: vi.fn(async () => "node-1"),
10
- listNodes: vi.fn(async () => []),
+ listNodes: vi.fn(async () => [] as Array<{ nodeId: string; commands?: string[] }>),
11
resolveNodeIdFromList: vi.fn(() => "node-1"),
12
}));
13
0 commit comments