Is there a way to set the order in which tests are executed within an Spock Specification?
For example:
class MySpec extends IntegrationSpec { de
You can use @Stepwise annotation on a spec and spock will run each of the test definitions of the Spec in the order they are specified. Look at this example.
@Stepwise