Skip to content
This repository was archived by the owner on Jul 29, 2022. It is now read-only.

karma-runner/karma-opera-launcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

edfc1e3 · May 4, 2016

History

29 Commits
Jul 2, 2015
Jul 2, 2015
Jul 13, 2013
Aug 3, 2013
Jul 2, 2015
May 4, 2016
May 11, 2013
Oct 23, 2013
Aug 10, 2015
Aug 10, 2015
Aug 10, 2015
May 4, 2016

Repository files navigation

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.