Browse Source

test: Don't run networkInfo tests against ie11 (#1221)

Co-authored-by: Evan farina <efarina@linkedin.com>
pull/1222/head
Evan Farina 4 years ago
committed by GitHub
parent
commit
aaedde37cd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      test/videojs-http-streaming.test.js

8
test/videojs-http-streaming.test.js

@ -1180,7 +1180,7 @@ QUnit.module('NetworkInformationApi', hooks => {
window.navigator = this.ogNavigator;
});
QUnit.test(
QUnit[testOrSkip](
'bandwidth returns networkInformation.downlink when useNetworkInformationApi option is enabled',
function(assert) {
this.resetNavigatorConnection({
@ -1203,7 +1203,7 @@ QUnit.module('NetworkInformationApi', hooks => {
}
);
QUnit.test(
QUnit[testOrSkip](
'bandwidth uses player-estimated bandwidth when its value is greater than networkInformation.downLink and both values are >= 10 Mbps',
function(assert) {
this.resetNavigatorConnection({
@ -1227,7 +1227,7 @@ QUnit.module('NetworkInformationApi', hooks => {
}
);
QUnit.test(
QUnit[testOrSkip](
'bandwidth uses network-information-api bandwidth when its value is less than the player bandwidth and 10 Mbps',
function(assert) {
this.resetNavigatorConnection({
@ -1251,7 +1251,7 @@ QUnit.module('NetworkInformationApi', hooks => {
}
);
QUnit.test(
QUnit[testOrSkip](
'bandwidth uses player-estimated bandwidth when networkInformation is not supported',
function(assert) {
// Nullify the `connection` property on Navigator

Loading…
Cancel
Save