testem-failure-only-reporter

Testem reporter that only reports failures

Usage no npm install needed!

<script type="module">
  import testemFailureOnlyReporter from 'https://cdn.skypack.dev/testem-failure-only-reporter';
</script>

README

testem-failure-only-reporter

Two testem reporters extracted from 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.

// 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.

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