PhpStorm 2018.1 Help

Testing Node.js

PhpStorm integrates with the nodeunit framework and makes it easier to test Node.js applications.

Creating and running unit tests for Node.js applications

  1. Enable nodeunit support.
  2. Write the unit tests.
  3. To have PhpStorm recognize the unit tests and detect the corresponding production source code, mark the folder where the unit tests are stored as a test folder.
  4. Create a run configuration of the type Nodeunit.
  5. Launch unit tests and monitor test results in the Run tool window.

Before you start

  1. Install Node.js and configure it as a local Node.js interpreter.
  2. Download and install the nodeunit testing framework.

Creating Nodeunit tests

  1. Create a folder called  test at the same level as the src folder
  2. Populate the test folder. For each production file, create a separate test file.
  3. Mark the folder where the tests are stored as test folder.

Creating a Nodeunit run configuration

  1. Open the Run/Debug Configuration dialog box by choosing Run | Edit Configurations on the main menu.
  2. Click the Add button new on the toolbar and select the Nodeunit configuration type.
  3. In the dialog box that opens, specify the following:
    1. The name to identify the configuration.
    2. Specify the Node.js interpreter to use, see Configuring a local Node.js interpreter for details.
    3. The working directory. This can be the project root folder or the parent directory for the test folder.
    4. The scope of tests to run.
      • To have PhpStorm run all the test files in a folder, choose All JavaScript test files in the directory from the Run drop-down list. In the Directory field, provide the path to the test folder relative to the working directory.
      • To have a specific test executed, choose JavaScript test file from the Run drop-down list. In the JavaScript test file field, provide the path to the file relative to the working directory.
  4. Apply the changes and close the dialog box.
Last modified: 27 July 2018

See Also