safe-tape-runner

0.1.3 • Public • Published

Safe Tape Runner

A tape runner that always exits with code 0. This allows us to play nice on Windows and keep our npm scripts composable.

Exiting with the right code should be the reporters job anyway.

But what about CI?

See the usage section. Just pipe to a reporter like tap-spec.

Latest version: v0.1.3

Changelog

Install

npm install safe-tape-runner --save-dev

Usage

safe-tape-runner test.js

If you pipe to a reporter like tap-spec, it will exit with the proper code, 0 for passing and 1 for failing.

safe-tape-runner test.js | tap-spec

You can also use glob patterns because we pass through to babel-tape-runner:

safe-tape-runner lib/**/__tests__/*-test.js

Usage in package.json

package.json

{
  "scripts": {
    "test": "npm run test-unformatted | tap-spec",
    "test-unformatted": "safe-tape-runner ./tests/test.js"
  },
}

Testing

npm test

Dependents (0)

Package Sidebar

Install

npm i safe-tape-runner

Weekly Downloads

0

Version

0.1.3

License

MIT

Last publish

Collaborators

  • mlm