PyCharm 2023.3 Help

Mocha

Mocha is a JavaScript test framework that is especially helpful for executing asynchronous test scenarios. You can run Mocha tests from outside PyCharm, examine test results arranged in a treeview, and easily navigate to the test source from there. Next to the test, in the editor, PyCharm shows the status of the test with an option to quickly run or debug it.

Before you start

  1. Make sure you have Node.js on your computer.

  2. Make sure the JavaScript and TypeScript and Node.js required plugins are enabled on the Settings | Plugins page, tab Installed. For more information, refer to Managing plugins.

Install Mocha

Write tests

Run tests

With PyCharm, you can quickly run a single Mocha test right from the editor or create a run/debug configuration to execute some or all of your tests.

Run a single test from the editor

  • Click the Run button or the Rerun button in the gutter and select Run <test_name> from the list.

    Run a Mocha test from the editor

    You can also see whether a test has passed or failed right in the editor, thanks to the test status icons Test passed and Test failed in the gutter.

    Test status in the gutter

Create a Mocha run configuration

  1. Open the Run/Debug Configuration dialog (Run | Edit Configurations in the main menu), click the Add button in the left-hand pane, and select Mocha from the list. The Run/Debug Configuration: Mocha dialog opens.

  2. Specify the Node interpreter to use and the location of the mocha package.

  3. Specify the working directory of the application. By default, the Working directory field shows the project root folder. To change this predefined setting, specify the path to the desired folder.

  4. Optionally:

    Configure rerunning tests automatically on changes in the related source files. To do that, add the --watch flag in the Extra Mocha options field.

  5. Specify the tests to run. This can be a specific test or suite, an entire test file, or a folder with test files.

    You can also define patterns to run only the tests from matching files, for example, *.test.js. If the files with tests are stored in a test folder, specify the path to this folder in the pattern relative to the working directory, for example, ./folder1/folder2/test/*.test.js.

  6. Choose the interface used in the test to run.

Run tests via a Mocha run configuration

  1. Select the Mocha run/debug configuration from the list of configurations and click the Run icon   in the list or on the toolbar.

  2. Monitor test execution and analyze test results in the Test Runner tab of the Run tool window. For more information, refer to Explore test results.

    • Use the Click to see the difference link to open the Difference viewer and compare the actual result with the expectation.

    • The name of file with the selected test is show as a link. Click this link to jump to the source code.

  3. Monitor test execution and analyze test results in the Test Runner tab of the Run tool window. For more information, refer to Explore test results.

    Monitor test execution

Rerun failed tests

  1. In the Test Runner tab, click Rerun Failed Tests button on the toolbar. PyCharm will execute all the tests that failed during the previous session.

    Mocha: rerun all failed tests
  2. To rerun a specific failed test, select Run <test name> on its context menu.

    Rerun single failed test from the editor: context menu
  3. Alternatively, click the Failed Test icon in the gutter next to a failed test and select Run <test name> from the list.

    Rerun single failed test from the editor: gutter icon

For more information, refer to Rerunning tests.

Navigation

With PyCharm, you can jump between a file and the related test file or from a test result in the Test Runner Tab to the test.

  • To jump between a test and its subject or vice versa, open the file in the editor and select Go to | Test or Go to | Test Subject from the context menu, or just press Ctrl+Shift+T.

  • To jump from a test result to the test definition, click the test name in the Test Runner tab twice, or select Jump to Source from the context menu, or just press F4. The test file opens in the editor with the caret placed at the test definition.

  • For failed tests, PyCharm brings you to the failure line in the test from the stack trace. If the exact line is not in the stack trace, you will be taken to the test definition.

Debug tests

With PyCharm, you can quickly start debugging a single Mocha test right from the editor or create a run/debug configuration to debug some or all of your tests.

Start debugging a single test from the editor

  1. Set a breakpoint in the gutter next to the test you want to debug. You can jump to a failed test by double-clicking it in the Run tool window or by pressing F4.

  2. Click the Run button or the Rerun button in the gutter and select Debug <test_name> from the list.

  3. In the Debug tool window, proceed as usual: step through the program, stop and resume the program execution, examine it when suspended, view actual HTML DOM, run JavaScript code snippets in the Console, and so on.

Debug Mocha test

Launch test debugging via a run/debug configuration

  1. Set the breakpoints next to the tests that you want to debug. You can jump to a failed test by double-clicking it in the Run tool window or by pressing F4.

  2. Create a Mocha run/debug configuration as described above.

  3. Select the Mocha run/debug configuration from the list of configurations and click the Debug icon   in the list or on the toolbar.

  4. In the Debug tool window that opens, proceed as usual: step through the tests, stop and resume test execution, examine the test when suspended, run JavaScript code snippets in the Debugger Console, and so on.

Monitor code coverage

With PyCharm, you can also monitor how much of your code is covered with Mocha tests. PyCharm displays this statistics in a dedicated Coverage tool window and marks covered and uncovered lines visually in the editor and in the Project tool window. To monitor coverage, you need to install nyc, the command-line interface for Istanbul.

Install nyc

  • In the embedded Terminal (Alt+F12) , type:

    npm install --save-dev nyc

Run tests with coverage

  1. Launch the tests:

    • Create a Mocha run/debug configuration as described above, select it from the list on the main toolbar, and click Run with Coverage  to the right of the list.

      Launch Mocha tests with coverage
    • Alternatively, run a specific suite or a test with coverage from the editor: click the Run button or the Rerun button in the left gutter and select Run <test_name> with Coverage from the list.

  2. Monitor the code coverage in the Coverage tool window. The report shows how many files were covered with tests and the percentage of covered lines in them. From the report you can jump to the file and see what lines were covered – marked green – and what lines were not covered – marked red:

    Mocha tests: coverage report

Run Mocha tests with Node.js inside a Docker container

With PyCharm, you can run Mocha tests inside a Docker container just in the same way as you do it locally.

Before you start

  1. Install the Node.js and Node.js Remote Interpreter plugins on the Settings | Plugins page, tab Marketplace, as described in Installing plugins from JetBrains Marketplace.

  2. Make sure the Docker plugin is enabled in the settings. Press Ctrl+Alt+S to open the IDE settings and then select Plugins. Click the Installed tab. In the search field, type Docker. For more information about plugins, refer to Managing plugins.

  3. Download, install, and configure Docker as described in Docker

  4. Configure a Node.js remote interpreter in Docker or via Docker Compose and set it as default in your project. Also make sure the package manager associated with this remote interpreter is set as project default.

  5. Open your package.json and make sure Mocha is listed in the devDependencies section:

    { "name": "node-express", "version": "0.0.0", "private": true, "dependencies": { "cookie-parser": "~1.4.4", "debug": "~2.6.9", "express": "~4.16.1", "http-errors": "~1.6.3", "morgan": "~1.9.1", "pug": "^3.0.2" }, "devDependencies": { "chai": "^4.3.4", "eslint": "^8.1.0", "http-server": "^14.0.0", "mocha": "^9.1.3" } }
  6. Right-click anywhere in the editor and select Run '<package manager> install' from the context menu.

Run tests

  1. Create tests according to the instructions from the Mocha official website.

  2. Proceed as with local development: run and debug single tests right from the editor or create a run/debug configuration to launch some or all of your tests as described in Run tests and Debug tests above.

Last modified: 07 March 2024