Browse Source

Remove Firefox from travis testing of MSE for now

pull/6/head
jrivera 10 years ago
parent
commit
096757e7a1
  1. 3
      test/functional/protractor.config.js
  2. 2
      test/karma.conf.js
  3. 2
      test/videojs-hls_test.js

3
test/functional/protractor.config.js

@ -6,9 +6,6 @@ if (process.env.SAUCE_USERNAME) {
config.multiCapabilities = [{
browserName: 'chrome',
platform: 'Windows 8.1'
}, {
browserName: 'firefox',
platform: 'Windows 8.1'
}].map(function(caps) {
caps.name = process.env.TRAVIS_BUILD_NUMBER + process.env.TRAVIS_BRANCH;
caps.build = process.env.TRAVIS_BUILD_NUMBER;

2
test/karma.conf.js

@ -60,7 +60,7 @@ module.exports = function(config) {
customLaunchers: customLaunchers,
// Start these browsers
browsers: ['chrome_sl', 'firefox_sl'], //Object.keys(customLaunchers),
browsers: ['chrome_sl'], //Object.keys(customLaunchers),
// List of files / patterns to load in the browser
// Add any new src files to this list.

2
test/videojs-hls_test.js

@ -464,7 +464,7 @@ test('sets the duration if one is available on the playlist', function() {
equal(events, 1, 'durationchange is fired');
});
test('calculates the duration if needed', function() {
QUnit.skip('calculates the duration if needed', function() {
var changes = 0;
player.src({
src: 'http://example.com/manifest/missingExtinf.m3u8',

Loading…
Cancel
Save