test(core): remove hardcoded model from TestRig (#18710)

This commit is contained in:
N. Taylor Mullen
2026-02-09 23:54:23 -08:00
committed by GitHub
parent 5b65e832c4
commit 2fb8d3831f
3 changed files with 13 additions and 6 deletions
+7 -3
View File
@@ -408,9 +408,13 @@ export class TestRig {
ui: {
useAlternateBuffer: true,
},
model: {
name: DEFAULT_GEMINI_MODEL,
},
...(env['GEMINI_TEST_TYPE'] === 'integration'
? {
model: {
name: DEFAULT_GEMINI_MODEL,
},
}
: {}),
sandbox:
env['GEMINI_SANDBOX'] !== 'false' ? env['GEMINI_SANDBOX'] : false,
// Don't show the IDE connection dialog when running from VsCode