1.0.0 • Published 7 years ago

karma-clear-terminal-reporter v1.0.0

Weekly downloads
221
License
MIT
Repository
github
Last release
7 years ago

karma-clear-terminal-reporter

Reporter that clears the screen before each test run and also scroll history.

Installation

Install by using following command

npm install karma-clear-terminal-reporter --save-dev

Configuration

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

You can pass list of reporters as a CLI argument too:

karma start --reporters clear-terminal,dots