Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
35f858f4
authored
2014-10-30 16:11:03 -0400
by
Gary Katsevman
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
we only care whether a downshift didn't happen
1 parent
f91ca616
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
test/videojs-hls_test.js
test/videojs-hls_test.js
View file @
35f858f
...
...
@@ -420,8 +420,6 @@ test('dont downshift if bandwidth is low', function() {
standardXHRResponse
(
requests
[
1
]);
standardXHRResponse
(
requests
[
2
]);
standardXHRResponse
(
requests
[
3
]);
strictEqual
(
requests
[
0
].
url
,
'manifest/master.m3u8'
,
'master playlist requested'
);
strictEqual
(
requests
[
1
].
url
,
window
.
location
.
origin
+
...
...
@@ -433,11 +431,6 @@ test('dont downshift if bandwidth is low', function() {
window
.
location
.
pathname
.
split
(
'/'
).
slice
(
0
,
-
1
).
join
(
'/'
)
+
'/manifest/media-00001.ts'
,
'first segment requested'
);
strictEqual
(
requests
[
3
].
url
,
window
.
location
.
origin
+
window
.
location
.
pathname
.
split
(
'/'
).
slice
(
0
,
-
1
).
join
(
'/'
)
+
'/manifest/media1.m3u8'
,
'media playlist requested'
);
});
test
(
'timeupdates do not check to fill the buffer until a media playlist is ready'
,
function
()
{
...
...
Please
register
or
sign in
to post a comment