Skip to content

Commit 3f4d484

Browse files
Update karma debug config to support latest MacOS versions
1 parent 3f4ecc6 commit 3f4d484

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

karma/config.debug.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33
const merge = require('lodash/merge');
44

55
module.exports = merge({}, require('./config'), {
6+
customLaunchers: {
7+
ChromeNoSandbox: {
8+
base: 'Chrome',
9+
flags: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-gpu']
10+
}
11+
},
612
browsers: [
7-
'Chrome'
13+
'ChromeNoSandbox'
814
],
915
rollupPreprocessor: {
1016
output: {

0 commit comments

Comments
 (0)