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:
parent
4d05b6febb
commit
a97bb5f74b
@ -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))
|
||||
|
||||
--------------------
|
||||
|
||||
|
@ -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']);
|
||||
|
Loading…
Reference in New Issue
Block a user