Skip to content

Instantly share code, notes, and snippets.

@hamzahamidi
Last active March 10, 2020 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamzahamidi/68f7ab17bcd0a79b5d947c808edb3473 to your computer and use it in GitHub Desktop.
Save hamzahamidi/68f7ab17bcd0a79b5d947c808edb3473 to your computer and use it in GitHub Desktop.
karma config for codcov
module.exports = function (config) {
config.set({
...
browsers: ['Chrome', 'ChromeHeadlessNoSandbox'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
}
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment