# tape-unsummarize

> Filters out the diagnostic summary lines output by [tape](https://www.npmjs.com/package/tape).

Latest version **1.1.2** (published 2017-08-10) · CC0-1.0 license · 0 weekly downloads

## Install

```sh
npm install tape-unsummarize
pnpm add tape-unsummarize
yarn add tape-unsummarize
bun add tape-unsummarize
```

Provides the command `tape-unsummarize`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.2 |
| Published | 2017-08-10 |
| First published | 2016-10-30 |
| Weekly downloads | 0 |
| License | CC0-1.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Johnny Hauser |
| Maintainers | m59 |
| Keywords | tape, summary, end, remove, strip, custom, tap, output, cli |

## Links

- npm: https://www.npmjs.com/package/tape-unsummarize
- Repository: https://github.com/m59peacemaker/node-tape-unsummarize
- Homepage: https://github.com/m59peacemaker/node-tape-unsummarize#readme
- Issues: https://github.com/m59peacemaker/node-tape-unsummarize/issues
- npm.io page: https://npm.io/package/tape-unsummarize

## Dependencies (5)

- [throo](https://npm.io/package/throo.md) ^1.0.0
- [duplexer](https://npm.io/package/duplexer.md) ^0.1.1
- [through2](https://npm.io/package/through2.md) ^2.0.1
- [tap_parser](https://npm.io/package/tap_parser.md) ^1.0.3
- [combine-arrays](https://npm.io/package/combine-arrays.md) ~1.0.2

## Alternatives

- [@salesforce/cli](https://npm.io/package/@salesforce/cli.md) — 389.7K weekly downloads
- [@mintlify/cli](https://npm.io/package/@mintlify/cli.md) — 208.9K weekly downloads
- [@grafana/e2e-selectors](https://npm.io/package/@grafana/e2e-selectors.md) — 128.7K weekly downloads
- [mintlify](https://npm.io/package/mintlify.md) — 112.0K weekly downloads
- [@intlayer/cli](https://npm.io/package/@intlayer/cli.md) — 22.8K weekly downloads

## Recent versions

- 1.1.2 (latest) — 2017-08-10
- 1.1.1 — 2017-02-09
- 1.1.0 — 2016-10-30
- 1.0.0 — 2016-10-30

## README

# tape-unsummarize

Filters out the diagnostic summary lines output by [tape](https://www.npmjs.com/package/tape).

## install

```sh
npm install tape-unsummarize
```

## example


```sh
$ tape **/*.test.js

TAP version 13
# test 1
ok 1 should be equal
# test 2
ok 2 should be equal

1..2
# tests 2
# pass  2

# ok
```

```sh
$ tape **/*.test.js | tape-unsummarize

TAP version 13
# test 1
ok 1 should be equal
# test 2
ok 2 should be equal

1..2
```

```js
const unSummarize = require('tape-unsummarize')

runTests()
  .pipe(unSummarize)
  .pipe(process.stdout)
```

---
_Source: https://npm.io/package/tape-unsummarize · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
