Skip to content

Commit 90f7f13

Browse files
committed
fix: add dummy REDIS_HOST/PORT so webapp passes module-level validation on startup
1 parent 407a3c0 commit 90f7f13

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • internal-packages/testcontainers/src

internal-packages/testcontainers/src/webapp.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ export async function startWebapp(databaseUrl: string): Promise<{
6464
CLICKHOUSE_URL: "http://localhost:19123", // dummy, auth paths never connect
6565
DEPLOY_REGISTRY_HOST: "registry.example.com", // dummy, not needed for auth tests
6666
ELECTRIC_ORIGIN: "http://localhost:3060",
67+
REDIS_HOST: "localhost", // dummy, satisfies module-level validation; auth paths never use Redis
68+
REDIS_PORT: "6379",
6769
NODE_PATH: nodePath,
6870
},
6971
stdio: ["ignore", "pipe", "pipe"],

0 commit comments

Comments
 (0)