From a150c64e2f4ea1b475129a3f30f0dc25387b0dc4 Mon Sep 17 00:00:00 2001 From: Tim Donohue Date: Fri, 3 Feb 2023 13:28:35 -0600 Subject: [PATCH] Fix test configuration --- src/environments/environment.test.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 + } } },