We have API tests written with Rest Assured and JUnit 5 and are trying to run the tests in parallel since there are no dependencies between the tests. We've tried the experimental parallel execution of JUnit 5 by setting:
junit.jupiter.execution.parallel.enabled=true
junit.jupiter.execution.parallel.mode.default=same_thread
junit.jupiter.execution.parallel.mode.classes.default=concurrent
..but have seen that usually when tests fail, their output isn't included in the test report.
Is this a known issue? Are there any workarounds?