We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b58176f commit 63030bfCopy full SHA for 63030bf
1 file changed
internal-packages/testcontainers/src/webapp.ts
@@ -69,6 +69,11 @@ export async function startWebapp(
69
ELECTRIC_ORIGIN: "http://localhost:3060",
70
REDIS_HOST: redis.host,
71
REDIS_PORT: String(redis.port),
72
+ // Disable background workers and logical replication: they are irrelevant for auth
73
+ // tests and in CI the replication slot creation holds a snapshot lock that blocks
74
+ // the test process's Prisma writes to the same DB.
75
+ WORKER_ENABLED: "false",
76
+ RUN_REPLICATION_ENABLED: "0",
77
NODE_PATH: nodePath,
78
},
79
stdio: ["ignore", "pipe", "pipe"],
0 commit comments