mocha-pending-reporter
v1.0.2
Published
Mocha reporter similar to "min" but with logging of pending tests
Downloads
3
Readme
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
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