karma-chrome-launcher

A Karma plugin. Launcher for Chrome and Chrome Canary.

MIT 28 个版本
安装
npm install karma-chrome-launcher
yarn add karma-chrome-launcher
pnpm add karma-chrome-launcher
bun add karma-chrome-launcher
README

karma-chrome-launcher

js-standard-style npm version npm downloads

Build Status Dependency Status devDependency Status

Launcher for Google Chrome, Google Chrome Canary and Google Chromium.

Installation

The easiest way is to keep karma-chrome-launcher as a devDependency in your package.json, by running

$ npm i -D karma-chrome-launcher

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    browsers: ['Chrome', 'Chrome_without_security'], // You may use 'ChromeCanary', 'Chromium' or any other supported browser

    // you can define custom flags
    customLaunchers: {
      Chrome_without_security: {
        base: 'Chrome',
        flags: ['--disable-web-security', '--disable-site-isolation-trials']
      }
    }
  })
}

The --user-data-dir is set to a temporary directory but can be overridden on a custom launcher as shown below. One reason to do this is to have a permanent Chrome user data directory inside the project directory to be able to install plugins there (e.g. JetBrains IDE Support plugin).

customLaunchers: {
  Chrome_with_debugging: {
    base: 'Chrome',
    chromeDataDir: path.resolve(__dirname, '.chrome')
  }
}

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

$ karma start --browsers Chrome,Chrome_without_security

Headless Chromium with Puppeteer

The Chrome DevTools team created Puppeteer - it will automatically install Chromium for all platforms and contains everything you need to run it from within your CI.

Available Browsers

Note: Headless mode requires a browser version >= 59

  • Chrome (CHROME_BIN)
  • ChromeHeadless (CHROME_BIN)
  • Chromium (CHROMIUM_BIN)
  • ChromiumHeadless (CHROMIUM_BIN)
  • ChromeCanary (CHROME_CANARY_BIN)
  • ChromeCanaryHeadless (CHROME_CANARY_BIN)
  • Dartium (DARTIUM_BIN)

Usage

$ npm i -D puppeteer karma-chrome-launcher
// karma.conf.js
process.env.CHROME_BIN = require('puppeteer').executablePath()

module.exports = function(config) {
  config.set({
    browsers: ['ChromeHeadless']
  })
}

For more information on Karma see the homepage.

版本列表
3.2.0 2023-04-20
3.1.1 2022-03-09
3.1.0 2019-08-13
3.0.0 2019-07-12
2.2.0 2017-06-23
2.1.1 2017-05-05
2.1.0 2017-05-02
2.0.0 2016-08-18
1.0.1 2016-05-02
0.2.3 2016-03-22
0.2.2 2015-12-01
0.2.1 2015-10-07
0.2.0 2015-06-23
0.1.12 2015-05-13
0.1.11 2015-05-12
0.1.10 2015-05-09
0.1.9 2015-05-09
0.1.8 2015-04-16
0.1.7 2014-12-03
0.1.6 2014-12-02
0.1.5 2014-09-30
0.1.4 2014-05-21
0.1.3 2014-04-01
0.1.2 2013-12-23
0.1.1 2013-11-26
0.1.0 2013-08-06
0.0.2 2013-06-24
0.0.1 2013-03-19