2.0.2 • Published 5 years ago

karma-safaritechpreview-launcher v2.0.2

Weekly downloads
18,676
License
MIT
Repository
github
Last release
5 years ago

karma-safaritechpreview-launcher

A Karma plugin. Launcher for Safari Technology Preview.

Installation

Note, this plugin requires Node version 4.0 or higher. You can check your node version by typing node --version.

npm install karma-safaritechpreview-launcher --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    browsers: ['SafariTechPreview'],
    // optionally, if not using "detectBrowsers"
    plugins: [
      require('karma-safaritechpreview-launcher'), 
    ] 
 });
};

Alternatively, as a CLI argument:

karma start --browsers SafariTechPreview

For more information on Karma see the homepage.

Attribution

This package is based on the original karma-safari-launcher by vojtajina.