We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents abb085d + bebb6c6 commit 49770c4Copy full SHA for 49770c4
1 file changed
karma.config.cjs
@@ -11,7 +11,13 @@ module.exports = function(config) {
11
port: 9876,
12
colors: true,
13
logLevel: config.LOG_INFO,
14
- browsers: ['ChromeHeadless'],
+ customLaunchers: {
15
+ ChromeHeadlessNoSandbox: {
16
+ base: 'ChromeHeadless',
17
+ flags: ['--no-sandbox', '--disable-setuid-sandbox'],
18
+ },
19
20
+ browsers: ['ChromeHeadlessNoSandbox'],
21
autoWatch: false,
22
singleRun: true,
23
concurrency: Infinity
0 commit comments