Skip to content

Commit

Permalink
log readyState on testSmoothSwitch
Browse files Browse the repository at this point in the history
  • Loading branch information
mangui committed Mar 13, 2018
1 parent 29c567c commit 36d539d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional/auto/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ describe('testing hls.js playback in the browser on "' + browserDescription + '"
window.switchToHighestLevel('next');
};
window.setTimeout(function () {
callback({ code: video.readyState, logs: window.logString });
var readyState = video.readyState;
console.log("[log] > readyState:" + readyState );
callback({ code: readyState, logs: window.logString });
}, 12000);
}, url, config).then(function (result) {
assert.strictEqual(result.code, 4);
Expand Down

0 comments on commit 36d539d

Please sign in to comment.