Skip to content

Commit

Permalink
Improve functional test stability by limiting forward buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Walch committed Jul 26, 2020
1 parent ff3b84b commit 2583044
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional/auto/setup.js
Expand Up @@ -382,7 +382,9 @@ describe(`testing hls.js playback in the browser on "${browserDescription}"`, fu
for (let name in streams) {
stream = streams[name];
let url = stream.url;
let config = stream.config || {};
let config = stream.config || {
maxMaxBufferLength: 15
};
if (
!stream.blacklist_ua ||
stream.blacklist_ua.indexOf(browserConfig.name) === -1
Expand Down

0 comments on commit 2583044

Please sign in to comment.