Skip to content

Commit

Permalink
test(screencast): skip test that depends on accelerated compositing (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Aug 14, 2020
1 parent 6abc352 commit 737bfa2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/screencast.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 737bfa2

Please sign in to comment.