0.1.0 • Published 7 years ago

karma-callphantom-reporter v0.1.0

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

karma-callphantom-reporter

Reporter that communicates with PhantomJS druing tests execution.

Installation

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

{
  "devDependencies": {
    "karma": "~1.5.0",
    "karma-callphantom-reporter": "~0.1.0"
  }
}

You can simple do it by:

npm install karma-callphantom-reporter --save-dev

Configuration

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

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

karma start --reporters callphantom
0.1.0

7 years ago