From 8d041e2acdbc23f8c944b0cea6b6e1ea182a9aa2 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Thu, 19 Feb 2026 18:19:44 -0600 Subject: [PATCH] test(config): update existing tests to match new experiment defaults --- packages/core/src/config/config.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/config/config.test.ts b/packages/core/src/config/config.test.ts index 3ac1aa2c34..fb155f2b19 100644 --- a/packages/core/src/config/config.test.ts +++ b/packages/core/src/config/config.test.ts @@ -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); }); });