Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 672 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 672 Bytes

karma-safari-launcher

Launcher for Safari.

Installation

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

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

You can simple do it by:

npm install karma-safari-launcher --save-dev

Configuration

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

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

karma start --browsers Safari

For more information on Karma see the homepage.