Unverified Commit a06f505c authored by Robert Knight's avatar Robert Knight Committed by GitHub

Merge pull request #2250 from hypothesis/remove-karma-node-v14-workaround

Remove Node v14 workaround for Karma
parents eccd9105 15e9e429
......@@ -8,14 +8,7 @@ const glob = require('glob');
let chromeFlags = [];
if (process.version.startsWith('v14.')) {
// See https://github.com/puppeteer/puppeteer/issues/5719
console.warn(
'Using system Chrome instead of Puppeteer due to issue with Node 14'
);
} else {
process.env.CHROME_BIN = require('puppeteer').executablePath();
}
process.env.CHROME_BIN = require('puppeteer').executablePath();
// On Travis and in Docker, the tests run as root, so the sandbox must be
// disabled.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment