Skip to content

Commit

Permalink
ignore sourceset on IE11
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev committed Mar 8, 2021
1 parent 8fadfe0 commit 6b994a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/sourceset.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import videojs from '../../src/js/video.js';
import document from 'global/document';
import window from 'global/window';
import log from '../../src/js/utils/log.js';
import browser from '../../src/js/utils/browser.js';
import sinon from 'sinon';
import {getAbsoluteURL} from '../../src/js/utils/url.js';

Expand All @@ -21,7 +22,7 @@ const sourceOne = {src: 'http://example.com/one.mp4', type: 'video/mp4'};
const sourceTwo = {src: 'http://example.com/two.mp4', type: 'video/mp4'};
const sourceThree = {src: 'http://example.com/three.mp4', type: 'video/mp4'};

if (!Html5.canOverrideAttributes()) {
if (!Html5.canOverrideAttributes() || browser.IE_VERSION) {
qunitFn = 'skip';
}

Expand Down

0 comments on commit 6b994a5

Please sign in to comment.