We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7288f commit a23cc08Copy full SHA for a23cc08
karma.conf.js
@@ -2,7 +2,7 @@ process.env.CHROME_BIN = require("puppeteer").executablePath();
2
3
module.exports = function (config) {
4
config.set({
5
- browsers: ["ChromeHeadless"],
+ browsers: ["ChromeHeadlessNoSandbox"],
6
7
frameworks: ["mocha", "chai"],
8
@@ -17,5 +17,11 @@ module.exports = function (config) {
17
},
18
19
listenAddress: "::",
20
+ customLaunchers: {
21
+ ChromeHeadlessNoSandbox: {
22
+ base: "ChromeHeadless",
23
+ flags: ["--no-sandbox"],
24
+ },
25
26
});
27
};
0 commit comments