Skip to content

Commit

Permalink
Add custom launcher for karma
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonatan committed Sep 26, 2018
1 parent 3108826 commit dd80f25
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
}
},
singleRun: false
});
};
};

0 comments on commit dd80f25

Please sign in to comment.