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
Whenever running spring boot tests, this extension seems to overwrite the unit tests produced by surefire with the integration tests ran by failsafe.
This needs to be investigate further to see exactly how many times junit listener is being instantiated (my guess is twice).
The text was updated successfully, but these errors were encountered:
If we're using surefire and failsafe together, and we run
mvn test failsafe:integration-test it will generate the results of the last task (i.e., failsafe:integration-test).
if we run mvn failsafe:integration-test test it will produce the JUnit XML report just based on the surefire tests...
Whenever running spring boot tests, this extension seems to overwrite the unit tests produced by surefire with the integration tests ran by failsafe.
This needs to be investigate further to see exactly how many times junit listener is being instantiated (my guess is twice).
The text was updated successfully, but these errors were encountered: