We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 786f825 commit 4d48767Copy full SHA for 4d48767
test/unit/config/karma.unit.conf.cjs
@@ -108,10 +108,17 @@ module.exports = function (config) {
108
109
// enable / disable watching file and executing tests whenever any file changes
110
autoWatch: false,
111
+
112
+ customLaunchers: {
113
+ Chrome_for_docker: {
114
+ base: 'ChromeHeadless',
115
+ flags: ['--disable-gpu','--no-sandbox']
116
+ }
117
+ },
118
119
// start these browsers
120
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
- browsers: ['ChromeHeadless', 'FirefoxHeadless'],
121
+ browsers: ['Chrome_for_docker', 'FirefoxHeadless'],
122
123
// Continuous Integration mode
124
// if true, Karma captures browsers, runs the tests and exits
0 commit comments