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.
1 parent 303b333 commit ad5f027Copy full SHA for ad5f027
karma/config.debug.js
@@ -3,8 +3,14 @@
3
const merge = require('lodash/merge');
4
5
module.exports = merge({}, require('./config'), {
6
+ customLaunchers: {
7
+ ChromeNoSandbox: {
8
+ base: 'Chrome',
9
+ flags: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-gpu']
10
+ }
11
+ },
12
browsers: [
- 'Chrome'
13
+ 'ChromeNoSandbox'
14
],
15
webpack: {
16
mode: 'development'
0 commit comments