WebStorm 6.0.1 Web Help

To get access to this dialog box, enable the JSTestDriver bundled plugin.

In this dialog box, create a configuration to be used for running JavaScript unit tests in the browser against a JSTestDriver server. Configurations of this type enable running unit tests based on the JSTestDriver Assertion, Jasmine, and QUnit frameworks.

This section provides descriptions of the configuration-specific items, as well as the toolbar and options that are common for all run/debug configurations.

The dialog box consists of the following tabs and areas:

Configuration Tab

In this tab, specify the tests to run, the configuration files to use, and the server to run the tests against.

Test

In this area, tell WebStorm where to find the tests to execute and how to get test runner configuration files that define which test files to load and in which order. The main approaches are:

  • Specify the location of one or several previously created configuration files.
  • Point at the target test file, test case, or test method, and then specify the location of the corresponding configuration file.
The way to find tests and configuration files is defined in the Test drop-down list. This choice determines the set of other controls in the area.

ItemDescriptionAvailable for
Test In this drop-down list, specify how WebStorm will get test runner configuration files.
  • All configuration files in directory: select this option to use all the test runner configuration files in a specific folder.
  • Configuration file: select this option to use a specific test runner configuration file.
  • JavaScript test file: select this option to have tests from a specific file executed using one of the previously defined configuration files.
  • Case: select this option to run a specific test case using one of the previously defined configuration files.
  • Method: select this option to run a specific test method using one of the previously defined configuration files.
Directory In this text box, specify the folder to look for test runner configuration files in. Type the path manually or click the Browse button browseButton.png and select the required folder in the dialog box, that opens. All configuration files in directory
Matched configuration files This read-only field shows a list of all the *jstd and JSTestDriver.conf test runner configuration files detected in the specified folder. All configuration files in directory
Configuration file In this text box, specify the test runner configuration file to use. Type the path manually or click the Browse button browseButton.png and select the required file in the dialog box that opens. Configuration file
JS test file In this text box, specify the JavaScript files with tests to be executed. Type the path manually or click the Browse button browseButton.png and select the required file in the dialog box, that opens. JavaScript test file
Case
Method
Case In this text box, type the name of the target case from the specified JavaScript file. Case
Method
Method In this text box, type the name of the target method from the specified test case within the specified JavaScript file. Method

Server

In this area, appoint the test server to run tests against.

ItemDescription
At address Choose this option to have the test execution handles by a remote test server. In the text box, specify the URL address to access the server through.
Running in IDE Choose this option to have test execution handles through the JSTestDriver server that comes bundled with WebStorm and can be launched from it.
Test Connection Click this button to check that the specified test server is accessible.

Note

The server must be running. Start the server from WebStorm or manually, according to the server-specific instructions.

Debug Tab

In this tab, appoint the browser to debug the unit test in when two or more browsers are captured simultaneously.

ItemDescription
Debug From this drop-down list, choose the browser to debug the specified tests in when two browsers are captured at a time. The available options are:
  • Chrome
  • Firefox

Coverage Tab

In this tab, specify the files that you do not want to be involved in coverage analysis.

ItemDescription
Exclude file path In this area, create a list of files to be skipped during coverage analysis.
  • To add an item to the list, click the Add button new.png and choose the required file in the dialog that opens.
  • To delete a file from the list so coverage is measured for it, select the file and click the Remove button delete.png.

Toolbar

ItemKeyboard shortcutDescription
add Alt+InsertCommand N; Command Enter Click this button to add new configuration to the list.
delete DeleteDelete Click this button to remove the selected configuration from the list.
copy Ctrl+DCtrl+D Click this button to create a copy of the selected configuration.
settings Edit DefaultsClick this button to edit the default configuration templates. The defaults are used for the newly created configurations.
add add UpUp
DownDown
Use these buttons to move the selected configuration up and down in the list. The order of configurations in the list defines the order, in which configurations appear in the Run/Debug drop-down list on the main toolbar.

Common options

ItemDescription
Defaults This node in the left-hand pane of the dialog box contains the default run/debug configuration settings. Select the desired configuration to change its default settings in the right-hand pane. The defaults are applied to all newly created run/debug configurations.
Temporary configurations limitSpecify here the maximum number of temporary configurations to be stored and shown in the Select Run/Debug Configuration drop-down list.
Before launchIn this area, specify the actions to be performed prior to executing the current run/debug configuration.
ItemKeyboard shortcutDescription
addAlt+InsertCommand N; Command Enter Click this button to add one of the tasks to be executed prior to launching the application. The possible tasks are:
  • Run External tool: Add this task to have WebStorm launch the specified third-party tool prior to running or debugging. To appoint a tool to launch, select it in the External Tools dialog box that opens.
deleteAlt+DeleteCommand Delete Click this button to remove selected task from the list.
edit1EnterEnter Click this button to open the selected task for editing.
arrowUp or arrowDownAlt+UpCommand Up or Alt+DownCommand Down Click these buttons to move the selected task one line up or down.

Note that Before launch actions are performed in the order they are specified in the run/debug configuration dialog.

Show this pageSelect this check box to always show the Edit Run/Debug Configuration dialog prior to launching the current run/debug configuration.
If this check box is not selected, run/debug configuration will be launched silently.

See Also

Procedures:

Web Resources: