Skip to content

Commit

Permalink
ignore: add skipped fmp4 and ts playlist test (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocajr authored and gesinger committed Jul 25, 2018
1 parent 70171bb commit f0694ec
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions test/playback.test.js
Expand Up @@ -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();

Expand Down

0 comments on commit f0694ec

Please sign in to comment.