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

karma-runner/karma-opera-launcher

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.