This commit is contained in:
Calvin Montgomery 2022-05-17 21:13:50 -07:00
parent fd451fe9d2
commit dcfcee9a23
3 changed files with 3 additions and 21 deletions

View file

@ -90,15 +90,6 @@ describe('custom-media', () => {
assert.throws(() => validate(invalid), /URL protocol must be HTTPS/);
});
it('rejects non-live DASH', () => {
invalid.live = false;
invalid.sources[0].contentType = 'application/dash+xml';
assert.throws(
() => validate(invalid),
/contentType "application\/dash\+xml" requires live: true/
);
});
});
describe('#validateSources', () => {