When we run cucumber tests on forked JVM processes, each test is isolated pretty much immediately, so if we try to use any sort of @before or @after it will run on every single jvm instance, and yes we could setup here, it will be executed on every process pointlessly...
How can we get in before the forked JVM processes and execute a single method even to validate the test run before proceeding etc?
The same should go for a run once after all tests on all JVM's have been executed.
Is there a simple solution for this?