Yet another Karma reporter created with the purpose to keep the testlog smaller.
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.
// karma.conf.js
module.exports = function(config) {
config.set({
reporters: ['progress', 'simple'],
});
};