diff --git a/tests/tests.js b/tests/tests.js index 46dbb67..264fec6 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -13,7 +13,6 @@ // limitations under the License. const flaskServerUrl = 'http://localhost:5000/'; -const outputHttpUrl = 'http://localhost:80/'; const dashManifestUrl = flaskServerUrl + 'output_files/dash.mpd'; const hlsManifestUrl = flaskServerUrl + 'output_files/hls.m3u8'; const OUTPUT_DIR = 'output_files/' @@ -396,33 +395,6 @@ function errorTests() { })); }); - it('fails when segment_per_file is false with a HTTP url output', async () => { - const inputConfig = getBasicInputConfig(); - const pipelineConfig = { - streaming_mode: 'vod', - resolutions: [], - segment_per_file: false, - }; - - await expectAsync(startStreamer(inputConfig, pipelineConfig, {}, outputHttpUrl)) - .toBeRejectedWith(jasmine.objectContaining({ - error_type: 'RuntimeError', - })); - }); - - it('fails when multiperiod_inputs_list is used with a HTTP url output', async () => { - const inputConfig = { - 'multiperiod_inputs_list': [ - getBasicInputConfig(), - ], - }; - - await expectAsync(startStreamer(inputConfig, minimalPipelineConfig, {}, outputHttpUrl)) - .toBeRejectedWith(jasmine.objectContaining({ - error_type: 'RuntimeError', - })); - }); - it('fails when utc_timing is not set for low_latency_dash_mode', async () => { const inputConfig = getBasicInputConfig(); const pipelineConfig = {