From 02833dac5e5644293194e98bcf79b665b8ad1fac Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 20 Jun 2025 10:06:49 +0100 Subject: [PATCH] Allow extending SynapseContainer testcontainer --- .../src/testcontainers/synapse.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/element-web-playwright-common/src/testcontainers/synapse.ts b/packages/element-web-playwright-common/src/testcontainers/synapse.ts index 0ccdfb4070..46c5667227 100644 --- a/packages/element-web-playwright-common/src/testcontainers/synapse.ts +++ b/packages/element-web-playwright-common/src/testcontainers/synapse.ts @@ -188,8 +188,8 @@ export type SynapseConfig = typeof DEFAULT_CONFIG; * Waits for HTTP /health 8008 to 200. */ export class SynapseContainer extends GenericContainer implements HomeserverContainer { - private config: SynapseConfig; - private mas?: StartedMatrixAuthenticationServiceContainer; + protected config: SynapseConfig; + protected mas?: StartedMatrixAuthenticationServiceContainer; public constructor(image = "ghcr.io/element-hq/synapse:develop") { super(image);