Skip to content

Commit b354051

Browse files
ANKUR DWIVEDIANKUR DWIVEDI
authored andcommitted
updated readme
1 parent db95f65 commit b354051

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

sdk/karma.conf.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,17 @@ module.exports = function (config) {
3939
autoWatch: true,
4040
browsers: ['Chrome'],
4141
singleRun: false,
42-
restartOnFileChange: true
42+
restartOnFileChange: true,
43+
browsers: ['ChromeHeadlessCustom'],
44+
customLaunchers: {
45+
ChromeHeadlessCustom: {
46+
base: 'ChromeHeadless',
47+
flags: [
48+
'--no-sandbox',
49+
'--disable-gpu',
50+
// Add any other flags you might need here
51+
]
52+
}
53+
},
4354
});
4455
};

0 commit comments

Comments
 (0)