From 841264c94d8c79c2879a807b91b7a9f48eb44e4b Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Tue, 23 Feb 2021 20:28:39 -0800 Subject: [PATCH] fix(test): disable failing drag and drop test on mac and windows (#5575) --- test/page-drag.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/page-drag.spec.ts b/test/page-drag.spec.ts index 272bf9c090..55b317298b 100644 --- a/test/page-drag.spec.ts +++ b/test/page-drag.spec.ts @@ -119,8 +119,9 @@ describe('Drag and drop', (test, {browserName}) => { }); }); - it('should respect the drop effect', (test, {browserName}) => { + it('should respect the drop effect', (test, {browserName, platform}) => { test.fixme(browserName === 'chromium', 'Chromium doesn\'t let users set dropEffect on our fake data transfer'); + test.fixme(browserName === 'webkit' && platform !== 'linux', 'WebKit doesn\'t handle the drop effect correctly outside of linux.'); test.fixme(browserName === 'firefox'); }, async ({context}) => { const page = await context.newPage();