Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rrainn/bulletprooftest
📦 NPM Package - Allows you to test a terminal command multiple times and exit on failure
https://github.com/rrainn/bulletprooftest
Last synced: 23 days ago
JSON representation
📦 NPM Package - Allows you to test a terminal command multiple times and exit on failure
- Host: GitHub
- URL: https://github.com/rrainn/bulletprooftest
- Owner: rrainn
- License: mit
- Created: 2017-12-22T22:03:10.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-09T01:02:46.000Z (almost 3 years ago)
- Last Synced: 2024-12-09T16:55:55.242Z (30 days ago)
- Language: JavaScript
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BulletProofTest [![NPM version](https://badge.fury.io/js/bulletprooftest.svg)](http://badge.fury.io/js/bulletprooftest) [![Known Vulnerabilities](https://snyk.io/test/github/rrainn/BulletProofTest/badge.svg)](https://snyk.io/test/github/rrainn/BulletProofTest) [![Dependencies](https://david-dm.org/rrainn/BulletProofTest.svg)](https://david-dm.org/rrainn/BulletProofTest) [![Dev Dependencies](https://david-dm.org/rrainn/BulletProofTest/dev-status.svg)](https://david-dm.org/rrainn/BulletProofTest?type=dev)
## Description
BulletProofTest is a package that allows you to easily test a terminal command multiple times. Once complete or on failure the process will exit.
## Install
`npm install --save bulletprooftest`
## Usage
For example the following command will run `npm test` 100 times or until failure.
`bulletprooftest --times=100 --command="npm test"`
You can adjust times and command to your use case.