An open API service indexing awesome lists of open source software.

https://github.com/emberjs/testem-failure-only-reporter

A testem reporter that only outputs failures
https://github.com/emberjs/testem-failure-only-reporter

Last synced: 9 months ago
JSON representation

A testem reporter that only outputs failures

Awesome Lists containing this project

README

          

testem-failure-only-reporter
---

Two `testem` reporters extracted from [`emberjs/ember.js`](https://github.com/emberjs/ember.js) for use by `emberjs` repositories.

#### Default, failure-only test reporter.
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
```

#### failure-only test reporter, grouped by browser

Extends from the above default failure-only reporter. Summarizes results by browser.

```js
const FailureOnlyReporterGroupedByBrowser = require('testem-failure-only-reporter/grouped-by-browser');
```