You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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();
}
The text was updated successfully, but these errors were encountered:
@masecla22 , I see the Express.getHttpServer() on your master, but it seems unpublished - this method is not existing in com.github.masecla22:java-express:0.2.2. Would you mind publishing?
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:
The text was updated successfully, but these errors were encountered: