diff --git a/src/environments/environment.test.ts b/src/environments/environment.test.ts index 88bc3e2223..613024f798 100644 --- a/src/environments/environment.test.ts +++ b/src/environments/environment.test.ts @@ -58,8 +58,14 @@ export const environment: BuildConfig = { }, // In-memory cache of server-side rendered pages. Disabled in test environment (max=0) serverSide: { - max: 0, - timeToLive: 15 * 60 * 1000, // 15 minutes + botCache: { + max: 0, + timeToLive: 24 * 60 * 60 * 1000, // 1 day + }, + anonymousCache: { + max: 0, + timeToLive: 10 * 1000, // 10 seconds + } } },