File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/systemTest/java/com/hivemq/cli/commands/distribution Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -267,6 +267,7 @@ testing {
267267 targets {
268268 all {
269269 testTask.configure {
270+ testLogging.showStandardStreams = true
270271 systemProperties[" junit.jupiter.testinstance.lifecycle.default" ] = " per_class"
271272 }
272273 }
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ public class DockerImageST {
3838
3939 @ SuppressWarnings ("resource" )
4040 final @ NotNull GenericContainer <?> mqttCli = new GenericContainer <>(OciImages .getImageName ("hivemq/mqtt-cli" )) //
41- .withExtraHost ("host.docker.internal" ,"host-gateway" );
41+ .withExtraHost ("host.docker.internal" , "host-gateway" )
42+ .withLogConsumer (outputFrame -> System .out .println (outputFrame .getUtf8String ()));
4243
4344 @ RegisterExtension
4445 @ SuppressWarnings ("JUnitMalformedDeclaration" )
You can’t perform that action at this time.
0 commit comments