Last active
August 17, 2017 08:04
-
-
Save fredrik-lundin/79635fcddd632863dfdba08db1f9c083 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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