test(server): add getBaseQueryCacheDebug to integration test env stubs

This commit is contained in:
Philipinho
2026-04-19 23:41:06 +01:00
parent c931fa5ec9
commit 14827ec6a0
@@ -53,6 +53,9 @@ class FakeEnvService {
getBaseQueryCacheWarmTopN() { getBaseQueryCacheWarmTopN() {
return 0; return 0;
} }
getBaseQueryCacheDebug() {
return false;
}
getRedisUrl() { getRedisUrl() {
return REDIS_URL; return REDIS_URL;
} }
@@ -118,6 +121,9 @@ describeIntegration('BaseQueryCacheService LRU eviction', () => {
getBaseQueryCacheWarmTopN() { getBaseQueryCacheWarmTopN() {
return 0; return 0;
} }
getBaseQueryCacheDebug() {
return false;
}
getRedisUrl() { getRedisUrl() {
return REDIS_URL; return REDIS_URL;
} }
@@ -753,6 +759,9 @@ describeIntegration('BaseQueryCacheService warm-up on boot', () => {
getBaseQueryCacheWarmTopN() { getBaseQueryCacheWarmTopN() {
return 5; return 5;
} }
getBaseQueryCacheDebug() {
return false;
}
getRedisUrl() { getRedisUrl() {
return REDIS_URL; return REDIS_URL;
} }