Topher Fangio
Topher Fangio

Reputation: 20667

Can Karma/Protractor run a tagged subset of tests?

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

Answers (1)

sjelin
sjelin

Reputation: 303

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

Donno about Karma

Upvotes: 1

Related Questions