From d4ab3cafe3cbd2d07e81cfed9213f8cf737fa367 Mon Sep 17 00:00:00 2001 From: theodab Date: Tue, 11 Jan 2022 21:35:31 -0800 Subject: [PATCH] test: Made the seek test more permissive (#3849) --- test/media/streaming_engine_integration.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/media/streaming_engine_integration.js b/test/media/streaming_engine_integration.js index daa2789e0a..4ee42b7846 100644 --- a/test/media/streaming_engine_integration.js +++ b/test/media/streaming_engine_integration.js @@ -420,8 +420,9 @@ describe('StreamingEngine', () => { // 3. Playhead seeks to force us back inside the window // 4. (maybe) seek if there is a gap at the period boundary // 5. (maybe) seek to flush a pipeline stall + // 6. (maybe) on slower platforms (e.g. GitHub actions) expect(seekCount).toBeGreaterThan(2); - expect(seekCount).toBeLessThan(6); + expect(seekCount).toBeLessThan(7); }); });