|
|
@ -59,6 +59,27 @@ QUnit.test('Advanced Bip Bop', function(assert) { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
QUnit.skip('playlist with fmp4 and ts segments', function(assert) { |
|
|
|
let done = assert.async(); |
|
|
|
|
|
|
|
assert.expect(2); |
|
|
|
let player = this.player; |
|
|
|
|
|
|
|
player.autoplay(true); |
|
|
|
|
|
|
|
playFor(player, 6, function() { |
|
|
|
assert.ok(true, 'played for at least six seconds to hit the change in container format'); |
|
|
|
assert.equal(player.error(), null, 'has no player errors'); |
|
|
|
|
|
|
|
done(); |
|
|
|
}); |
|
|
|
|
|
|
|
player.src({ |
|
|
|
src: 'https://d2zihajmogu5jn.cloudfront.net/ts-fmp4/index.m3u8', |
|
|
|
type: 'application/x-mpegURL' |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
QUnit.test('Advanced Bip Bop preload=none', function(assert) { |
|
|
|
let done = assert.async(); |
|
|
|
|
|
|
|