Michael K.
Michael K.

Reputation: 2402

How to open Protractor/Jasmine Test inclusion/exclusion window in Webstorm

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

Answers (1)

alecxe
alecxe

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() and it() / 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.

enter image description here

Upvotes: 2

Related Questions