Remove log statement
Don't include unnecessary debugging statements, even during tests.
Showing
1 changed file
with
0 additions
and
1 deletions
... | @@ -655,7 +655,6 @@ test('does not download the next segment if the buffer is full', function() { | ... | @@ -655,7 +655,6 @@ test('does not download the next segment if the buffer is full', function() { |
655 | 655 | ||
656 | player.trigger('timeupdate'); | 656 | player.trigger('timeupdate'); |
657 | 657 | ||
658 | console.log(requests); | ||
659 | strictEqual(requests.length, 1, 'no segment request was made'); | 658 | strictEqual(requests.length, 1, 'no segment request was made'); |
660 | }); | 659 | }); |
661 | 660 | ... | ... |
-
Please register or sign in to post a comment