Commit 15e9e429 authored by Robert Knight's avatar Robert Knight

Remove Node v14 workaround for Karma

Run tests under Puppeteer again as the issue with Node v14 has been
resolved.
parent 1a501b20
......@@ -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