Skip to content

Commit

Permalink
Skip flaky test (#35926)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanorozco committed Sep 2, 2021
1 parent fe31e07 commit a9a4663
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -109,12 +109,14 @@ describes.endtoend(
).equal('');
});

it('lowers the quality on close videos that are not already loaded when a video buffers', async () => {
// TODO(#35925): Re-enable this test.
it.skip('lowers the quality on close videos that are not already loaded when a video buffers', async () => {
await forceEventOnVideo(VIDEO_EVENTS.UNLOAD, 2);
await forceEventOnVideo(VIDEO_EVENTS.DOWNGRADE, 1);

const video2El = await controller.findElement('#video2 video');

// Flake here: result is sometimes #low4 instead of #med
await expect(
await controller.getElementProperty(video2El, 'currentSrc')
).contains('#med');
Expand Down

0 comments on commit a9a4663

Please sign in to comment.