We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3afdcb9 commit cbcf671Copy full SHA for cbcf671
1 file changed
karma.conf.js
@@ -75,7 +75,16 @@ module.exports = function(config) {
75
76
// start these browsers
77
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
78
- browsers: ['ChromeHeadless'],
+ browsers: ['Chrome-NoSandBox'],
79
+
80
+ customLaunchers: {
81
+ 'Chrome-NoSandBox': {
82
+ base: 'ChromeHeadless',
83
+ flags: [
84
+ '--no-sandbox'
85
+ ]
86
+ }
87
+ },
88
89
// Continuous Integration mode
90
// if true, Karma captures browsers, runs the tests and exits
0 commit comments