Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.