From fc08cffd372eff732bb0f0a24b7155606acf0794 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Thu, 23 Apr 2026 04:40:30 +0100 Subject: [PATCH] test(server): init LRU test module so pg extension bootstraps --- .../core/base/query-cache/base-query-cache.integration.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/server/src/core/base/query-cache/base-query-cache.integration.spec.ts b/apps/server/src/core/base/query-cache/base-query-cache.integration.spec.ts index e163d701..92fd99ee 100644 --- a/apps/server/src/core/base/query-cache/base-query-cache.integration.spec.ts +++ b/apps/server/src/core/base/query-cache/base-query-cache.integration.spec.ts @@ -193,6 +193,8 @@ describeIntegration('BaseQueryCacheService LRU eviction', () => { ], }).compile(); + await moduleRef.init(); + cache = moduleRef.get(BaseQueryCacheService); basePropertyRepo = moduleRef.get(BasePropertyRepo); dbHandle = moduleRef.get(DbHandle);