Reputation: 2402
How to open the Window Titled as "Select the Test or Suite to Include / Exclude" in Webstorm for Protractor/Jasmine Tests?
I've seen it in this Video at 1:45, but did not find any documentation how to open it!
Upvotes: 2
Views: 413
Reputation: 473833
This is available through a ddescriber for jasmine
plugin:
This is an idea plugin to quickly run jasmine unit tests and suites by switching between
describe()
/ddescribe()
/xdescribe()
andit()
/iit()
/xit()
.Just type Ctrl + Shift + D (Command + Shift + D on a Mac) to launch a dialog that lets you choose which suites or unit tests you want to include or exclude.
Upvotes: 2