diff --git a/karma.conf.js b/karma.conf.js index 23487ad..2199080 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -37,8 +37,14 @@ module.exports = function (config) { colors: true, logLevel: config.LOG_INFO, autoWatch: true, - browsers: ['ChromeHeadless'], + browsers: ['ChromeHeadlessNoSandbox'], singleRun: false, - restartOnFileChange: true + restartOnFileChange: true, + customLaunchers: { + ChromeHeadlessNoSandbox: { + base: 'ChromeHeadless', + flags: ['--no-sandbox'] + } + } }); };