feat(core): Integrate remote experiments configuration (#12539)

This commit is contained in:
Shreya Keshive
2025-11-04 15:09:53 -08:00
committed by GitHub
parent 53c7646ed7
commit da3da19844
11 changed files with 173 additions and 43 deletions
+2 -2
View File
@@ -1550,7 +1550,7 @@ describe('loadCliConfig compressionThreshold', () => {
},
};
const config = await loadCliConfig(settings, 'test-session', argv);
expect(config.getCompressionThreshold()).toBe(0.5);
expect(await config.getCompressionThreshold()).toBe(0.5);
});
it('should have undefined compressionThreshold if not in settings', async () => {
@@ -1558,7 +1558,7 @@ describe('loadCliConfig compressionThreshold', () => {
const argv = await parseArguments({} as Settings);
const settings: Settings = {};
const config = await loadCliConfig(settings, 'test-session', argv);
expect(config.getCompressionThreshold()).toBeUndefined();
expect(await config.getCompressionThreshold()).toBeUndefined();
});
});