test(config): update existing tests to match new experiment defaults

This commit is contained in:
mkorwel
2026-02-19 18:19:44 -06:00
committed by Matt Korwel
parent 9ccb6ff329
commit 8d041e2acd
+2 -2
View File
@@ -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);
});
});