From 737bfa2676ac66814c1801c95bf332808aa20ee3 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 13 Aug 2020 18:01:06 -0700 Subject: [PATCH] test(screencast): skip test that depends on accelerated compositing (#3458) --- test/screencast.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/screencast.spec.ts b/test/screencast.spec.ts index 6d988375a0..cc959d0704 100644 --- a/test/screencast.spec.ts +++ b/test/screencast.spec.ts @@ -231,7 +231,8 @@ it.fail(CHROMIUM)('should capture navigation', async({page, tmpDir, server, vide } }); -it.fail(CHROMIUM)('should capture css transformation', async({page, tmpDir, server, videoPlayer, toImpl}) => { +// Accelerated compositing is disabled in WebKit on Windows. +it.fail(CHROMIUM || (WEBKIT && WIN))('should capture css transformation', async({page, tmpDir, server, videoPlayer, toImpl}) => { if (!toImpl) return; const videoFile = path.join(tmpDir, 'v.webm');