Fix the MAS config override ordering

This commit is contained in:
Quentin Gliech
2025-08-05 12:05:04 +02:00
parent d3e9d5bd92
commit 636cee5dcb
2 changed files with 2 additions and 2 deletions
@@ -1,7 +1,7 @@
{ {
"name": "@element-hq/element-web-playwright-common", "name": "@element-hq/element-web-playwright-common",
"type": "module", "type": "module",
"version": "1.4.5", "version": "1.4.6",
"license": "SEE LICENSE IN README.md", "license": "SEE LICENSE IN README.md",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -186,9 +186,9 @@ export class MatrixAuthenticationServiceContainer extends GenericContainer {
const port = await getFreePort(); const port = await getFreePort();
this.config.http = { this.config.http = {
...this.config.http,
public_base: `http://localhost:${port}/`, public_base: `http://localhost:${port}/`,
issuer: `http://localhost:${port}/`, issuer: `http://localhost:${port}/`,
...this.config.http,
}; };
this.withExposedPorts({ this.withExposedPorts({