fix(test): use dynamic port for websocket tests

This commit is contained in:
syntaxbullet
2026-01-07 13:37:21 +01:00
parent ac4025e179
commit 9c2098bc46
2 changed files with 8 additions and 13 deletions

View File

@@ -65,4 +65,7 @@ export class WebServer {
this.server = null;
}
}
public static get port(): number | undefined {
return this.server?.port;
}
}