From a6b26b0b5936f7e002bfe2ecfa1d2f4c85550d77 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Thu, 23 Nov 2017 10:46:29 +0100 Subject: [PATCH] chore(test): add missing custom Chrome headless launcher --- test/config/karma.unit.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/test/config/karma.unit.js b/test/config/karma.unit.js index 10098d75..a8a38b47 100644 --- a/test/config/karma.unit.js +++ b/test/config/karma.unit.js @@ -49,6 +49,17 @@ module.exports = function(karma) { reporters: [ 'spec' ], + customLaunchers: { + ChromeHeadless_Linux: { + base: 'ChromeHeadless', + flags: [ + '--no-sandbox', + '--disable-setuid-sandbox' + ], + debug: true + } + }, + browsers: browsers, browserNoActivityTimeout: 30000,