We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15bb0d8 + c5437ca commit 78581a4Copy full SHA for 78581a4
karma.conf.js
@@ -1,6 +1,13 @@
1
module.exports = function (config) {
2
config.set({
3
- browsers: ['ChromiumHeadless'],
+ browsers: ['ChromiumHeadlessNoSandbox'],
4
+ customLaunchers: {
5
+ // This will allow CI pipelines to run karma tests as root
6
+ ChromiumHeadlessNoSandbox: {
7
+ base: 'ChromiumHeadless',
8
+ flags: ['--no-sandbox']
9
+ }
10
+ },
11
// The directory where the output file lives
12
basePath: 'resources/tests',
13
// The file itself
0 commit comments