Skip to content

Commit cbcf671

Browse files
committed
Fix build
1 parent 3afdcb9 commit cbcf671

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

karma.conf.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,16 @@ module.exports = function(config) {
7575

7676
// start these browsers
7777
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
78-
browsers: ['ChromeHeadless'],
78+
browsers: ['Chrome-NoSandBox'],
79+
80+
customLaunchers: {
81+
'Chrome-NoSandBox': {
82+
base: 'ChromeHeadless',
83+
flags: [
84+
'--no-sandbox'
85+
]
86+
}
87+
},
7988

8089
// Continuous Integration mode
8190
// if true, Karma captures browsers, runs the tests and exits

0 commit comments

Comments
 (0)