Skip to content

Instantly share code, notes, and snippets.

@fredrik-lundin
Last active August 17, 2017 08:04
Show Gist options
  • Save fredrik-lundin/79635fcddd632863dfdba08db1f9c083 to your computer and use it in GitHub Desktop.
Save fredrik-lundin/79635fcddd632863dfdba08db1f9c083 to your computer and use it in GitHub Desktop.
module.exports = function (config) {
config.set({
...
plugins: [
...
require('karma-coverage-istanbul-reporter'), // <- Add plugin
require('karma-junit-reporter'), // <- Add plugin
...
],
...
...
browsers: ['Chrome', 'PhantomJS'], // <- Add browser
...
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment