Skip to content

martin-brennan-csnet/karma-slimerjs-launcher

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

karma-slimerjs-launcher

Launcher for SlimerJS.

Installation

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

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

You can simple do it by:

npm install karma-slimerjs-launcher --save-dev

Configuration

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

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

karma start --browsers SlimerJS,Chrome

For more information on Karma see the homepage.

About

A Karma launcher for SlimerJS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 77.8%
  • CoffeeScript 22.2%