Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Build: Add karma-chrome-launcher support (#11027)
* Revert "Revert "Build: Use karma-chrome-launcher to run tests (#10898)" (#10973)"

This reverts commit 536611a.

* Build: add devdeps puppeteer@1.9.0

* Chore: set the path to chromium binary
  • Loading branch information
aladdin-add authored and not-an-aardvark committed Jan 4, 2019
1 parent 166853d commit f92d6f0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions karma.conf.js
@@ -1,5 +1,7 @@
"use strict";

process.env.CHROME_BIN = require("puppeteer").executablePath();

module.exports = function(config) {
config.set({

Expand Down Expand Up @@ -67,8 +69,13 @@ module.exports = function(config) {

// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ["PhantomJS"],

browsers: ["HeadlessChrome"],
customLaunchers: {
HeadlessChrome: {
base: 'ChromeHeadless',
flags: [ '--no-sandbox', ],
},
},

// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -97,17 +97,17 @@
"jsdoc": "^3.5.5",
"karma": "^3.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"leche": "^2.2.3",
"load-perf": "^0.2.0",
"markdownlint": "^0.11.0",
"mocha": "^5.0.5",
"mock-fs": "^4.6.0",
"npm-license": "^0.3.3",
"phantomjs-prebuilt": "^2.1.16",
"proxyquire": "^2.0.1",
"puppeteer": "^1.9.0",
"shelljs": "^0.8.2",
"sinon": "^3.3.0",
"temp": "^0.8.3",
Expand Down

0 comments on commit f92d6f0

Please sign in to comment.