Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 473 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 473 Bytes

karma-simpler-reporter

Yet another Karma reporter created with the purpose to keep the testlog smaller.

Installation

The easiest way is to keep karma-simpler-reporter as a devDependency in your package.json. Just run

npm install karma-simpler-reporter --save-dev

to let npm automatically add it there.

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    reporters: ['progress', 'simple'],
  });
};