Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

karma-opera-launcher

karma-runner41.2kMIT1.0.0

A Karma plugin. Launcher for Opera.

karma-plugin, karma-launcher, opera

readme

karma-opera-launcher

js-standard-style npm version npm downloads

Build Status Dependency Status devDependency Status

Launcher for Opera.

Installation

The easiest way is to keep karma-opera-launcher as a devDependency. You can simple do it by:

npm install karma-opera-launcher --save-dev

Configuration

Opera Classic (up to and including v12)

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

Opera (v15 and above)

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

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

karma start --browsers Opera,OperaClassic

For more information on Karma see the homepage.

changelog

1.0.0 (2016-05-04)

0.3.0 (2015-08-10)

Bug Fixes

  • do not try to find the Windows executable if the ProgramFiles variables are unde (9c17cc0)
  • use path.join() to construct the path of the prefs.ini file (a077186)

Features

  • runner: add support for Webkit Opera runner (d38a625)

<a name"0.2.0">

0.2.0 (2015-07-02)

Features

  • Search for opera.exe in various locations (29c3002a)

<a name"0.0.2">

0.0.2 (2015-07-02)

<a name"0.0.1">

0.0.1 (2015-07-02)

  • Initial release