Skip to content

Commit

Permalink
fix: re-add ChromiumHeadlessNoSandbox for ubuntu 24+
Browse files Browse the repository at this point in the history
  • Loading branch information
mpalourdio committed Jan 18, 2025
1 parent 2d01496 commit 7dee073
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,16 @@ module.exports = function (config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['ChromiumHeadless', 'FirefoxHeadless'],
browsers: ['ChromiumHeadlessNoSandbox', 'FirefoxHeadless'],
customLaunchers: {
FirefoxHeadless: {
base: 'Firefox',
flags: [ '-headless' ],
},
ChromiumHeadlessNoSandbox: {
base: 'ChromiumHeadless',
flags: [ '--no-sandbox' ]
}
},
singleRun: false,
browserNoActivityTimeout: 100000
Expand Down

0 comments on commit 7dee073

Please sign in to comment.