Skip to content

Commit 3e91b12

Browse files
committed
chore(travis): use firefox
1 parent 366180c commit 3e91b12

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ module.exports = function (grunt) {
7676
karma: {
7777
watch: {
7878
configFile: 'test/karma.conf.js',
79-
background: true
79+
background: true,
8080
},
8181
single: {
8282
configFile: 'test/karma.conf.js',
8383
singleRun: true,
84-
browsers: ['Chrome']
84+
browsers: [process.env.TRAVIS ? 'Firefox' : 'Chrome'],
8585
}
8686
},
8787

test/karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = function(config) {
3030

3131
// test results reporter to use
3232
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
33-
reporters: [process.env.TRAVIS ? 'dots' : 'progress'],
33+
reporters: ['dots'],
3434

3535

3636
// web server port
@@ -58,7 +58,7 @@ module.exports = function(config) {
5858
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
5959
// - PhantomJS
6060
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
61-
browsers: [process.env.TRAVIS ? 'Firefox' : 'Chrome'],
61+
browsers: ['Chrome'],
6262

6363

6464
// If browser does not capture in given timeout [ms], kill it

0 commit comments

Comments
 (0)