PyCharm 2017.1 Help

Testing JavaScript with Cucumber.js

This feature is supported in the Professional edition only.

JavaScript unit tests are run in a browser against a test server which actually handles the testing process.

This server allows you to capture a browser to run tests in, loads the test targets to the captured browser, controls the testing process, and exchanges data between the browser and PyCharm, so you can view test results without leaving the IDE.

The test server does not necessarily have to be on your machine, it can be launched right from PyCharm through the Cucumber.js test runner. Cucumber.js runs tests that are called features and are written in the Gherkin language. Each feature is described in a separate file with the extension feature.

On this page:

Before you start

  1. Download and install Node.js. The runtime environment is required for two reasons:
    • The Cucumber.js test runner is started through Node.js.
    • NPM, which is a part of the runtime environment, is also the easiest way to download the Cucumber.js test runner.

    If you are going to use the command line mode, make sure the path to the parent folder of the Node.js executable file and the path to the npm folder are added to the PATH variable. This enables you to launch the Cucumber.js test runner and npm from any folder.

  2. Install and enable the NodeJS repository plugin as described in Installing, Updating and Uninstalling Repository Plugins and Enabling and Disabling Plugins.
  3. Install and enable the Cucumber.js and Gherkin plugins. The plugins are not bundled with PyCharm, but they can be installed from the JetBrains plugin repository as described in Installing, Updating and Uninstalling Repository Plugins and Enabling and Disabling Plugins. Once enabled, the plugins are available at the IDE level, that is, you can use them in all your PyCharm projects.

Installing Cucumber.js

You can install Cucumber.js in the current project (locally), or globally, or as a development dependency.

  • Local installation in a specific project restricts the use of the test runner to this project.
  • Global installation makes the test runner available at the PyCharm level so it can be used in any PyCharm project. Moreover, during installation the parent folder of the test runner is automatically added to the PATH variable, which enables you to launch the test runner from any folder.
  • Because Cucumber.js is a test framework, which is of no need for those who are going to re-use your application, it is helpful to have it excluded from download for the future. This is done by marking the tool as a development dependency, which actually means adding the tool in the devDependencies section of the package.json file.

  1. launch the embedded Terminal (View | Tool Windows | Terminal or by hovering your mouse pointer over /help/img/idea/2017.1/show_tool_window_bars.png in the lower left corner of PyCharm and choosing Terminal from the menu and type one of the following commands at the command line prompt:
    • npm install cucumber to install Cucumber.js in your project.
    • npm install -g cucumber to install Cucumber.js globally. The -g key makes the test runner run in the global mode. Because the installation is performed through NPM, the Cucumber.js test runner is installed in the npm folder. Make sure this parent folder is added to the PATH variable. This enables you to launch the test runner from any folder.
    • npm install --dev cucumber to install Cucumber.js as a development dependency. After installation, the test runner is added to the devDependencies section of the package.json file.

See NPM documentation for more details about installing the Cucumber.js test runner and npm operation modes.

You can also install the cucumber package on the Node.js and NPM page of the Settings dialog box as described in Installing and Removing External Software Using Node Package Manager.

Creating a Cucumber.js run configuration

  1. Open the Run/Debug Configuration dialog box by doing one of the following:
    • On the main menu, choose Run | Edit Configurations.
    • Open the test file in the editor, and then choose Create <file name> on the context menu.
    • Select the test file in the Project tool window, and then choose Create <file name> on the context menu of the selection.
  2. Click the Add button /help/img/idea/2017.1/new.png on the toolbar and select the Cucumber.js configuration type. The Run/Debug Configuration: Cucumber.js dialog box opens.
  3. In the Feature file or directory text box, specify the tests to run. Cucumber.js runs tests that are called features and are written in the Gherkin language. Each feature is described in a separate file with the extension feature.
    • To have one feature executed, specify the path to the corresponding .feature file.
    • To have a bunch of features executed, specify the folder where the .feature files to run are stored.
  4. In the Executable path text box, specify the location of the cucumber executable file, .cmd, .bat, or other depending on the operating system used. The location depends on the installation mode, see Installing the Cucumber.js test runner.
  5. Optionally, specify the command line arguments to be passed to the Cucumber.js executable file, such as -r (--require LIBRARY|DIR), -t (--tags TAG_EXPRESSION), or --coffee. For details, see Cucumber's native built-in help available through the cucumber-js --help command.
  6. Apply the changes and close the dialog box.

Launching tests

  1. To launch the tests according to a run configuration, select the Cucumber.js run/debug configuration from the list on the main toolbar and click the Run button /help/img/idea/2017.1/run.png to the right of the list.
  2. The test server starts automatically without any steps from your side. View and analyze messages from the test server in the Run tool window.
  3. Monitor test execution in the Test Runner tab of the Run tool window as described in Monitoring and Managing Tests.

See Also

Last modified: 26 July 2017