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
- Host: GitHub
- URL: https://github.com/emberjs/testem-failure-only-reporter
- Owner: emberjs
- Created: 2019-01-08T01:00:29.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:12:02.000Z (over 3 years ago)
- Last Synced: 2024-10-29T14:51:20.432Z (over 1 year ago)
- Language: JavaScript
- Size: 245 KB
- Stars: 1
- Watchers: 11
- Forks: 4
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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');
```