Adds karma configuration for xunit reporting

oggui/translations
Nicolas Arenas 2024-10-24 18:27:40 +02:00
parent 7cede099af
commit 10a81de899
1 changed files with 7 additions and 1 deletions

View File

@ -27,7 +27,13 @@ module.exports = function(config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ['ChromeHeadlessNoSandbox'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox','--disable-setuid-sandbox']
}
},
singleRun: false,
restartOnFileChange: true
});