Skipped Tests Finder is a command-line tool that scans your project or test suites and identifies any skipped tests or test suites. It provides a convenient way to keep track of skipped tests and ensure that they are addressed before releasing your application. Skipped Tests Finder works for the majority of test frameworks, including but not limited to Playwright, Puppeteer, Cypress, Robot Framework, Selenium, Katalon Studio, Jest, Mocha, Jasmine, unittest, pytest, RSpec, MiniTest, PHPUnit, JUnit, NUnit, MSTest, Catch2 and GoogleTest.
Note: this tool appears to struggle with scanning very large codebases in their entirety. If you encounter the error message The directory does not exist. Please enter a valid directory path.
after running the script to scan your entire codebase, please rerun the tool, this time targeting either your test directory or the src
folder specifically. Additionally, it's advisable to run the tool separately on different directories to segregate results for distinct types of test suites within your project. For instance, you might run this script to identify Jest tests located in ./src
and Cypress tests in ./cypress/e2e
separately.
- Recursively scans a directory and its subdirectories for test files (
.js
,.ts
,.jsx
,.tsx
,.coffee
,.py
,.rb
,.php
,.java
,.cs
,.go
,.cpp
and.groovy
files) - Identifies skipped tests for many different types of syntaxes, such as
it.skip(...)
,test.skip(...)
,xtest(...)
,@unittest.skip("reason")
,@pytest.mark.skip(reason="reason")
,it "test name"
and much more - Displays the total number of skipped tests found
- Outputs a list of skipped tests with their names, file paths, and line numbers
- Supports outputting the results to a file (
skipped_tests.txt
) for easier integration with other tools or further processing
- skipped-tests-finder requires NodeJS 10 (or higher) to be installed
npm install -g skipped-tests-finder
This will install the tool globally on your system, making it available from any directory.
- Clone this repository:
git clone https://github.com/Sharma-IT/skipped-tests-finder.git
- Change into this respository's directory:
cd skipped-tests-finder
- To install
skipped-tests-finder
globally on Linux-based Operating Systems (including macOS), run:
./install.sh
This will make the tool accessible from anywhere by running skipped-tests-finder
.
- To install
skipped-tests-finder
globally on Windows, run PowerShell as Administrator and execute:
.\install.ps1
This will make the tool accessible from anywhere by running skipped-tests-finder
. You may need to restart your terminal for the changes to take effect.
If you installed via npm:
npm uninstall -g skipped-tests-finder
./uninstall.sh
Run PowerShell as Administrator and execute:
.\uninstall.ps1
- Install
skipped-tests-finder
using the instructions above. - From any directory in your terminal, run:
skipped-tests-finder
-
Upon execution, the script will request the path to your tests directory. You have the option to input the path after initiating the script or beforehand using the
-d
argument. For example,skipped-tests-finder -d=projects/project_name/cypress/e2e
. -
Following that, the script will inquire whether you wish to save the results to a text file. Respond with either "y" or "n" as appropriate, "y" will save the results to a text file (
skipped_tests.txt
) and "n" will print the results in your console. If you choose "y", you'll be prompted to enter the file path where you want the text file to be created. Leaving this blank will create the output in the same directory as the tests. -
Alternatively, you can bypass this prompt by utilising the following arguments when executing the script:
-cli
: Display the results directly in your console-txt
: Generate a plain text file namedskipped_tests.txt
in the same directory as your tests-o=<path>
: Override the output directory for the text file (optional)-d=<path>
: Specify the directory to scan for skipped tests (e.g.,skipped-tests-finder -d=projects/project_name/cypress/e2e
)
-
The script will proceed to scan your test directory and its subdirectories to identify skipped tests. Subsequently, it will print the results in the console or write them into the
skipped_tests.txt
file, depending on your choice.
Usage: skipped-tests-finder [options] -d=[<path>]
Options:
-d=<path> Path to the directory to search for skipped tests
-txt Output the results to a plain text file
-cli Output the results to the terminal
-o=<path> Path to the directory for the text output
-h, --help Display this help message
my-name@my-computers-name my_application % skipped-tests-finder.js -d=.projects/project_1/cypress/e2e -cli
Total skipped tests: 2
Skipped Tests:
- test 1 (cypress/e2e/tests.spec.js:4)
- test 2 (cypress/e2e/tests.spec.js:12)
Pull requests are welcomed. For major changes, please open an issue first to discuss what you would like to change.
Shubham Sharma - My LinkedIn - [email protected].
This project is licensed under the GPL 3.0 License - see the LICENSE file for details.