# parallel-tests **Repository Path**: mirrors_Unitech/parallel-tests ## Basic Information - **Project Name**: parallel-tests - **Description**: Use this CLI to run your tests in parallel - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # parallel-tests - Run your tests in parallels This CLI is running all of your tests in parallel with a simple command: ```bash parallel "mocha test.js" "mocha test2.js" "mocha test3.js" ``` ## How to use Like the above example you just need to run this command to launch your tests: ```bash parallel ``` If you want to set the number of tests runned in parallel you can use this param: ```bash parallel -n 4 ``` ### Options Some options can be pass as parameter like: - number _you can specify how many tests will run in parallel_ You can get more help with: ```bash parallel --help ```