1.0.2 • Published 9 years ago

mocha-pending-reporter v1.0.2

Weekly downloads
43
License
MIT
Repository
github
Last release
9 years ago

mocha-pending-reporter

Mocha reporter similar to "min" but with logging of pending tests. Useful as a to-do list of things to be tested

Sample Output

Usage

From the command line

> npm install --save-dev mocha-pending-reporter
> mocha -R mocha-pending-reporter

From your package.json

"scripts": {
    "pending": "mocha -R mocha-pending-reporter"
},
"devDependencies": {
    "mocha": "*",
    "mocha-pending-reporter": "*"
}

Then simply:

> npm run pending