Can Karma / Protractor run a fake subset of tests?

I am trying to check if Karma / Protractor easily supports the execution of a subset of tags (or tagged ones). The functionality I hope for is basically that Rspec allows through it - the tag parameter .

For example, we could mark the test as ui, serviceor controller, and then execute only the tags service.

+4
source share
1 answer

A protractor can use Suites: https://github.com/angular/protractor/blob/master/lib/config.ts#L218

Donno about Karma

+1
source

All Articles