mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-13 12:57:12 -07:00
test(config): update existing tests to match new experiment defaults
This commit is contained in:
@@ -545,9 +545,9 @@ describe('Server Config (config.ts)', () => {
|
||||
expect(await config.getUserCaching()).toBe(false);
|
||||
});
|
||||
|
||||
it('should return undefined if there are no experiments', async () => {
|
||||
it('should return the default value if there are no experiments', async () => {
|
||||
const config = new Config(baseParams);
|
||||
expect(await config.getUserCaching()).toBeUndefined();
|
||||
expect(await config.getUserCaching()).toBe(false);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user