From 1bcbf19e86f1b13e014b28f5ee88dbe1007f2a1f Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 7 Aug 2020 09:53:34 -0700 Subject: [PATCH] test(video): mark test as failing in WebKit Linux (#3344) --- test/capabilities.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/capabilities.spec.ts b/test/capabilities.spec.ts index 72052c04b1..adcb908ca1 100644 --- a/test/capabilities.spec.ts +++ b/test/capabilities.spec.ts @@ -50,9 +50,10 @@ it('should respect CSP', async({page, server}) => { expect(await page.evaluate(() => window['testStatus'])).toBe('SUCCESS'); }); -it.fail(WEBKIT && WIN)('should play video', async({page}) => { +it.fail(WEBKIT && (WIN || LINUX))('should play video', async({page}) => { // TODO: the test passes on Windows locally but fails on GitHub Action bot, // apparently due to a Media Pack issue in the Windows Server. + // Also the test is very flaky on Linux WebKit. // // Safari only plays mp4 so we test WebKit with an .mp4 clip. const fileName = WEBKIT ? 'video_mp4.html' : 'video.html';