Hello,
I trying to run multiple test in parallel with serenity and the maven-failsafe-plugin.
I configure the plugin to fork the VM (because I use a spring context that I don't want to be shared between features)
the execution seems ok but the serenity report, after the aggregation, give a new result. Less tests are counted.
I think that the issue is than the aggregation count only the number of test of a fork execution, and not from the whole execution. (Even if the aggregation is run after the build, using serenity:aggregate)
Is Serenity BDD is build to be used in a forked JVM mode ? Or can be used only with parallel execution based on multiple thread ?
Regards