Skip to content

Commit

Permalink
test: Made the seek test more permissive (#3849)
Browse files Browse the repository at this point in the history
  • Loading branch information
theodab committed Jan 12, 2022
1 parent b82e8ed commit d4ab3ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/media/streaming_engine_integration.js
Expand Up @@ -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);
});
});

Expand Down

0 comments on commit d4ab3ca

Please sign in to comment.