(query: string)
| 93 | }); |
| 94 | |
| 95 | async function explore(query: string): Promise<string> { |
| 96 | const res = await handler.execute('codegraph_explore', { query }); |
| 97 | expect(res.isError).toBeFalsy(); |
| 98 | return res.content[0]!.text; |
| 99 | } |
| 100 | |
| 101 | it('a bare English word ("check") does not tier its namesake above the corroborated answer file', async () => { |
| 102 | const text = await explore('how does the upgrade flow check the latest version'); |
no test coverage detected