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); }); });