Is there a way to run the tests within a spec in sequence?
@Stepwise
class TestSpec extends GebReportingSpec {
def 'A'(){
//
}
def 'B'(){
//
}
def 'C'(){
//
}
}
Is there a way I can force A to run before B and B to run before C?
Thanks, Shravanthi