0.1.2 • Published 10 years ago

karma-ripple-launcher v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

karma-ripple-launcher

Launcher for Ripple.

Installation

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

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-ripple-launcher": "~0.1"
  }
}

You can simple do it by:

npm install karma-ripple-launcher --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    browsers: ['Ripple'],
    
    rippleSettings: {
      codePath: 'path/to/app'
    },
  });
};

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

karma start --browsers Ripple

For more information on Karma see the homepage.