forked from stanfy/helium
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
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?