1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-28 08:58:46 +02:00

Fixed saucelabs integration to run on commits in TravisCI. closes #1214

This commit is contained in:
Gary Katsevman 2014-05-16 15:18:24 -07:00 committed by Steve Heffernan
parent 4d05b6febb
commit a97bb5f74b
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ CHANGELOG
* Fixed an issue with the loadstart event order that caused the big play button to not hide [[view](https://github.com/videojs/video.js/pull/1209)]
* Modernized the fullscreen API and added support for IE11 [[view](https://github.com/videojs/video.js/pull/1205)]
* Added cross-browser testing with SauceLabs, and added Karma as the default test runner ([view](https://github.com/videojs/video.js/pull/1187))
* Fixed saucelabs integration to run on commits in TravisCI ([view](https://github.com/videojs/video.js/pull/1214))
--------------------

View File

@ -333,7 +333,7 @@ module.exports = function(grunt) {
grunt.task.run(['pretask']);
if (process.env.TRAVIS_PULL_REQUEST) {
if (process.env.TRAVIS_PULL_REQUEST !== 'false') {
grunt.task.run(['karma:phantomjs', 'karma:minified_phantomjs', 'karma:minified_api_phantomjs']);
} else if (process.env.TRAVIS) {
grunt.task.run(['karma:saucelabs']);