testem-failure-only-reporter
Version:
Testem reporter that only reports failures
23 lines (16 loc) • 726 B
Markdown
testem-failure-only-reporter
---
Two `testem` reporters extracted from [`emberjs/ember.js`](https://github.com/emberjs/ember.js) for use by `emberjs` repositories.
Extends from the `testem` `tap` reporter. Only outputs results on failure. Outputs progress once every 100 tests to keep CI alive.
```js
// testem.js
const FailureOnlyReporter = require('testem-failure-only-reporter');
//...
reporter: FailureOnlyReporter
```
Extends from the above default failure-only reporter. Summarizes results by browser.
```js
const FailureOnlyReporterGroupedByBrowser = require('testem-failure-only-reporter/grouped-by-browser');
```