PhpStorm 2023.3 Help

Find unused code with coverage

PhpStorm lets you find unused JavaScript, TypeScript, and CSS code in your client-side applications. When you run an application in the special Code Coverage mode, PhpStorm creates a report showing how much code in every file and folder was used. Thanks to source maps, this report shows coverage for your source files but not for the compiled code that was actually run in the browser.

Run an application in the Code Coverage mode

  1. Create a run/debug configuration of the type JavaScript Debug:

    Go to Run | Edit Configurations in the main menu. In the Edit Configurations dialog that opens, click the Add button (the Add button) on the toolbar and select JavaScript Debug from the list. In the Run/Debug Configuration: JavaScript Debug dialog that opens, specify the URL address at which the application is running. This URL can be copied from the address bar of your browser.

  2. Choose the newly created configuration in the Select run/debug configuration list on the toolbar and click the Run '' with Coverage button (the Run with Coverage button) next to the list.

    Start app with coverage

    The URL address specified in the run configuration opens in the browser.

  3. To learn what code was executed during the page load, just load the application and then stop it by clicking the Stop button (the Stop button) on the toolbar, next to the Run '' with Coverage button (the Run with Coverage button), or in the Run tool window. If you need a coverage report for some specific features of your application, trigger these features in the browser and only then click the Stop button (the Stop button) to stop the application.

  4. View the report in the Coverage tool window. The Project tool window shows information about the coverage of files and folders. In the editor, the gutter shows green markers next to the lines that were executed and red markers next to those that were not. You can also hover over the line markers and see how many times each line of code was hit.

    Coverage report
Last modified: 04 March 2024