Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hughsk/tap-closer
Simple JS "transform" tool that will call window.close or process.exit when TAP output is complete
https://github.com/hughsk/tap-closer
Last synced: 12 days ago
JSON representation
Simple JS "transform" tool that will call window.close or process.exit when TAP output is complete
- Host: GitHub
- URL: https://github.com/hughsk/tap-closer
- Owner: hughsk
- License: other
- Created: 2014-12-29T00:48:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-29T00:48:26.000Z (almost 10 years ago)
- Last Synced: 2024-10-17T16:41:21.569Z (22 days ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 16
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# tap-closer
![](http://img.shields.io/badge/stability-experimental-orange.svg?style=flat)
![](http://img.shields.io/npm/v/tap-closer.svg?style=flat)
![](http://img.shields.io/npm/dm/tap-closer.svg?style=flat)
![](http://img.shields.io/npm/l/tap-closer.svg?style=flat)Simple JS "transform" tool that will call `window.close` or `process.exit` when
TAP output is complete.Useful, for example, in combination with
[smokestack](http://github.com/hughsk/smokestack) and
[tape](http://github.com/substack/tape) and
[browserify](http://github.com/substack/node-browserify) for testing npm modules
in the browser:``` bash
browserify test/*.js | tap-closer | smokestack | tap-spec
```Note however that this isn't specific to browserify or smokestack or tape, you
can use this with any JavaScript tool that logs TAP output to your console.[![NPM](https://nodei.co/npm/tap-closer.png)](https://nodei.co/npm/tap-closer/)
## CLI Usage
The CLI for `tap-closer` modifies your JavaScript file to capture `console.log`
calls and work out when a TAP test is finished, closing your browser or Node
process once this happens. It accepts input from stdin only, and outputs to
stdout only, so you would use it like so:``` bash
cat bundle.js | tap-closer > bundle-closer.js
```## Using Directly
All the CLI is doing is prepending the browserified contents of `instrument.js`
to whatever JavaScript is being piped in. You can do this yourself with the
module's `bundle.js` once installed, e.g.:``` bash
cat node_modules/tap-closer/bundle.js bundle.js > bundle-closer.js
```Though it's generally nicer/safer using the CLI :)
## License
MIT. See [LICENSE.md](http://github.com/hughsk/tap-closer/blob/master/LICENSE.md) for details.