Cleanup post delegate_to_agent removal (#17875)

This commit is contained in:
Christian Gunderman
2026-01-29 18:24:35 +00:00
committed by GitHub
parent 0e30055ae4
commit bc258eba4c
5 changed files with 36 additions and 10 deletions

View File

@@ -24,11 +24,11 @@ describe('generalist_agent', () => {
prompt:
'Please use the generalist agent to create a file called "generalist_test_file.txt" containing exactly the following text: success',
assert: async (rig) => {
// 1) Verify the generalist agent was invoked via delegate_to_agent
// 1) Verify the generalist agent was invoked
const foundToolCall = await rig.waitForToolCall('generalist');
expect(
foundToolCall,
'Expected to find a delegate_to_agent tool call for generalist agent',
'Expected to find a tool call for generalist agent',
).toBeTruthy();
// 2) Verify the file was created as expected