isao / argg

A poor man's test runner for tap, tape, or similar, that also can be used with istanbul. It's just three lines of code to require all globs or pathnames provided as command line arguments. (n.b. happily obsolesced by Tape 0.3.0)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

argg

note! this project is obsolete, this functionality now ships with tape as of version 0.3.0.

A poor man's test runner for tap, tape, or similar, that also can be used with istanbul. It's just three lines of code to require pathnames from the command line. Shell globbing test runner, if you will, which you can do when your tests are simple scripts.

usage

Install like:

npm i argg --save-dev

…then in your package.json add:

"scripts": {
    "test": "node node_modules/argg tests/*.js",
    "cover": "istanbul cover node_modules/argg tests/*.js"
},

…so from the command line, you can run tests and get code coverage with istanbul like:

npm test
npm run cover

why

Hey ok, tap has a nice test runner, but I would need something like this for tape by itself, or for either tap or tape with istanbul. I could make a file and explicitly require the files, but that takes typing, and I know I'd miss something.

license

MIT licensed by permission from my employer. See LICENSE.txt.

About

A poor man's test runner for tap, tape, or similar, that also can be used with istanbul. It's just three lines of code to require all globs or pathnames provided as command line arguments. (n.b. happily obsolesced by Tape 0.3.0)

License:Other


Languages

Language:JavaScript 100.0%