When running tests on CI/CD, I need to start the application under test on random port with Express.listen(0).
Then I'd like to obtain the actual port number to hand it over to RestAssured (or whatever other rest client)
Proposed addition to express.Express class:
public InetSocketAddress getAddress() {
return httpServer.getAddress();
}