Mocha reporter similar to "min" but with logging of pending tests. Useful as a to-do list of things to be tested
> npm install --save-dev mocha-pending-reporter
> mocha -R mocha-pending-reporter
"scripts": {
"pending": "mocha -R mocha-pending-reporter"
},
"devDependencies": {
"mocha": "*",
"mocha-pending-reporter": "*"
}
Then simply:
> npm run pending