Skip to content

Commit bcbcdd2

Browse files
authored
Build: Run tests on Travis only on browsers defined in the config
The environmental variable BROWSERS was being created but it wasn't read in the list of browsers to pass to Karma. Closes gh-4532
1 parent 2d5ad6d commit bcbcdd2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Gruntfile.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ module.exports = function( grunt ) {
1313
}
1414

1515
var fs = require( "fs" ),
16-
gzip = require( "gzip-js" );
16+
gzip = require( "gzip-js" ),
17+
isTravis = process.env.TRAVIS,
18+
travisBrowsers = process.env.BROWSERS && process.env.BROWSERS.split( "," );
1719

1820
if ( !grunt.option( "filename" ) ) {
1921
grunt.option( "filename", "jquery.js" );
@@ -190,7 +192,7 @@ module.exports = function( grunt ) {
190192
singleRun: true
191193
},
192194
main: {
193-
browsers: [ "ChromeHeadless", "FirefoxHeadless" ]
195+
browsers: isTravis && travisBrowsers || [ "ChromeHeadless", "FirefoxHeadless" ]
194196
},
195197

196198
jsdom: {

0 commit comments

Comments
 (0)