Reputation: 20667
I'm trying to see if Karma/Protractor supports easily running a subset of tagged (or flagged) tests. The functionality I'm hoping for is basically what Rspec allows through it's --tag option.
For instance, we might want to tag a test as ui
, service
or controller
and then run only the service
tests.
Upvotes: 4
Views: 1252
Reputation: 303
Protractor can using Suites: https://github.com/angular/protractor/blob/master/lib/config.ts#L218
Donno about Karma
Upvotes: 1