feat(browser): implement experimental browser agent (#19284)

This commit is contained in:
Gaurav
2026-02-24 09:22:09 -08:00
committed by GitHub
parent 182c858e67
commit 9e95b8b3c5
23 changed files with 3506 additions and 1 deletions
+4 -1
View File
@@ -149,6 +149,9 @@ describe('GeminiCliAgent Integration', () => {
throw new Error('Dynamic instruction failure');
},
model: 'gemini-2.0-flash',
fakeResponses: RECORD_MODE
? undefined
: getGoldenPath('agent-dynamic-instructions'),
});
const session = agent.session();
@@ -159,5 +162,5 @@ describe('GeminiCliAgent Integration', () => {
// Just consume the stream
}
}).rejects.toThrow('Dynamic instruction failure');
});
}, 30000);
});