karma-effroi

A Karma plugin - adapter for Effroi device simulation framework.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
karma-effroi
100.0.010 years ago10 years agoMinified + gzip package size for karma-effroi in KB

Readme

karma-effroi
Adapter for the effroi UI testing framework.

Installation

Very early alpha version, many changes on the API can be expected
The easiest way is to keep karma-effroi as a devDependency in your package.json.
{
  "devDependencies": {
    "karma": "~0.10",
    "karma-effroi": "~0.0"
  }
}

You can simple do it by:
npm install karma-effroi --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    frameworks: ['effroi'],

    files: [
      '*.js'
    ]
  });
};

For more information on Karma see the homepage.