@element-hq/element-web-playwright-common 1.4.5 → 1.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -157,9 +157,9 @@ export class MatrixAuthenticationServiceContainer extends GenericContainer {
157
157
  // MAS config issuer needs to know what URL it'll be accessed from, so we have to map the port manually
158
158
  const port = await getFreePort();
159
159
  this.config.http = {
160
+ ...this.config.http,
160
161
  public_base: `http://localhost:${port}/`,
161
162
  issuer: `http://localhost:${port}/`,
162
- ...this.config.http,
163
163
  };
164
164
  this.withExposedPorts({
165
165
  container: 8080,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@element-hq/element-web-playwright-common",
3
3
  "type": "module",
4
- "version": "1.4.5",
4
+ "version": "1.4.6",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "repository": {
7
7
  "type": "git",
@@ -186,9 +186,9 @@ export class MatrixAuthenticationServiceContainer extends GenericContainer {
186
186
  const port = await getFreePort();
187
187
 
188
188
  this.config.http = {
189
+ ...this.config.http,
189
190
  public_base: `http://localhost:${port}/`,
190
191
  issuer: `http://localhost:${port}/`,
191
- ...this.config.http,
192
192
  };
193
193
 
194
194
  this.withExposedPorts({