Skip to content

Commit a42da1d

Browse files
author
AndrzejSala
committed
chore(karma): Update karma config
1 parent f784cd8 commit a42da1d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

projects/filestack-angular/karma.conf.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,14 @@ module.exports = function (config) {
2525
colors: true,
2626
logLevel: config.LOG_INFO,
2727
autoWatch: true,
28-
browsers: ['Chrome'],
28+
browsers: ['Chrome', 'ChromeHeadless', 'ChromeHeadlessNoSandbox'],
2929
singleRun: false,
30-
restartOnFileChange: true
30+
restartOnFileChange: true,
31+
customLaunchers: {
32+
ChromeHeadlessNoSandbox: {
33+
base: 'ChromeHeadless',
34+
flags: ['--no-sandbox']
35+
}
36+
}
3137
});
3238
};

0 commit comments

Comments
 (0)