Skip to content

Commit c5349e7

Browse files
author
OpenShift Bot
authored
Merge pull request #894 from benjaminapetersen/karma-update
Merged by openshift-bot
2 parents 23682f1 + c6f3267 commit c5349e7

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

Gruntfile.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,15 @@ module.exports = function (grunt) {
576576
karma: {
577577
unit: {
578578
configFile: 'test/karma.conf.js',
579-
singleRun: true
579+
singleRun: true,
580+
// default in karma.conf.js is Firefox, however, Chrome has much better
581+
// error messages when writing tests. Call like this:
582+
// grunt test
583+
// grunt test --browsers=Chrome
584+
// grunt test --browsers=Chrome,Firefox,Safari (be sure karma-<browser_name>-launcher is installed)
585+
browsers: grunt.option('browsers') ?
586+
grunt.option('browsers').split(',') :
587+
['Firefox']
580588
}
581589
},
582590

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"jasmine-spec-reporter": "1.1.2",
4242
"jshint-stylish": "0.2.0",
4343
"karma": "0.12.23",
44+
"karma-chrome-launcher": "^2.0.0",
4445
"karma-coverage": "0.2.6",
4546
"karma-firefox-launcher": "^1.0.0",
4647
"karma-jasmine": "0.1.5",

test/karma.conf.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,9 @@ module.exports = function(config) {
8080
// - Safari (only Mac)
8181
// - PhantomJS
8282
// - IE (only Windows)
83-
browsers: ['Firefox'],
84-
// Which plugins to enable
8583
plugins: [
8684
'karma-firefox-launcher',
85+
'karma-chrome-launcher',
8786
'karma-ng-html2js-preprocessor',
8887
'karma-jasmine',
8988
'karma-coverage'

0 commit comments

Comments
 (0)