Single line, coloured, descriptive karma jasmine reporter, improved upon dots reporter. Great for fixing tests.
$ npm install minimal-karma-jasmine-reporter --save-dev
// karma.conf.js
module.exports = function(config) {
config.set({
// reporters configuration
reporters: ['minimal']
});
};
Define which colors are applied on icons in case of success, failure and ignore.
Use the chalk colors to customize it.
Example:
// karma.conf.js
module.exports = function(config) {
config.set({
// reporters configuration
reporters: ['minimal'],
minimalReporter: {
color: {
success : 'blue',
failure : 'yellow',
ignore : 'grey'
}
}
});
};