fix: update ExtensionStateContext test to include new experiment

This commit is contained in:
Roo Code 2025-07-25 09:29:09 +00:00
parent 0baf45dc35
commit e8051f19cb

View file

@ -222,10 +222,8 @@ describe("mergeExtensionState", () => {
apiConfiguration: { modelMaxThinkingTokens: 456, modelTemperature: 0.3 },
experiments: {
powerSteering: true,
marketplace: false,
disableCompletionCommand: false,
concurrentFileReads: true,
multiFileApplyDiff: true,
showEnhancePromptButton: true,
} as Record<ExperimentId, boolean>,
}
@ -238,10 +236,8 @@ describe("mergeExtensionState", () => {
expect(result.experiments).toEqual({
powerSteering: true,
marketplace: false,
disableCompletionCommand: false,
concurrentFileReads: true,
multiFileApplyDiff: true,
showEnhancePromptButton: true,
})
})
})