We need to provide a way to run specific tests instead of the whole suite.
But we also need to figure out how to refer these checks conveniently.
Will something like this work?
describe 'Some long description' spec(alias: 'myCheck1') {
it('succeeds', alias: 'myCheck11') { }
it('succeeds', alias: 'myCheck12') { }
}
And then we can use myCheck1, myCheck11, myCheck12 in the command line?
We need to provide a way to run specific tests instead of the whole suite.
But we also need to figure out how to refer these checks conveniently.
Will something like this work?
And then we can use
myCheck1,myCheck11,myCheck12in the command line?