From f4e09b609fa9ae61060cb590c6528f3b5a1ca6d0 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Sun, 29 Dec 2024 22:12:02 +0100 Subject: [PATCH] fix(e2e): tests failing because of missing env variable for secret-encryption-key --- e2e/shared/create-homarr-container.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e2e/shared/create-homarr-container.ts b/e2e/shared/create-homarr-container.ts index e6f2281ae..d8391c240 100644 --- a/e2e/shared/create-homarr-container.ts +++ b/e2e/shared/create-homarr-container.ts @@ -7,5 +7,8 @@ export const createHomarrContainer = () => { return new GenericContainer("homarr-e2e") .withExposedPorts(7575) + .withEnvironment({ + SECRET_ENCRYPTION_KEY: "0".repeat(64), + }) .withWaitStrategy(Wait.forHttp("/api/health/ready", 7575)); };