@@ -230,10 +230,16 @@ describe("mergeExtensionState", () => {
230230 apiConfiguration : { modelMaxThinkingTokens : 456 , modelTemperature : 0.3 } ,
231231 experiments : {
232232 powerSteering : true ,
233+ marketplace : false ,
234+ disableCompletionCommand : false ,
235+ concurrentFileReads : true ,
233236 multiFileApplyDiff : true ,
234237 preventFocusDisruption : false ,
238+ newTaskRequireTodos : false ,
235239 imageGeneration : false ,
236240 runSlashCommand : false ,
241+ nativeToolCalling : false ,
242+ metadataDrivenSubtasks : false ,
237243 } as Record < ExperimentId , boolean > ,
238244 checkpointTimeout : DEFAULT_CHECKPOINT_TIMEOUT_SECONDS + 5 ,
239245 }
@@ -247,10 +253,16 @@ describe("mergeExtensionState", () => {
247253
248254 expect ( result . experiments ) . toEqual ( {
249255 powerSteering : true ,
256+ marketplace : false ,
257+ disableCompletionCommand : false ,
258+ concurrentFileReads : true ,
250259 multiFileApplyDiff : true ,
251260 preventFocusDisruption : false ,
261+ newTaskRequireTodos : false ,
252262 imageGeneration : false ,
253263 runSlashCommand : false ,
264+ nativeToolCalling : false ,
265+ metadataDrivenSubtasks : false ,
254266 } )
255267 } )
256268} )
0 commit comments