test: skip "should respect the drop effect" in headed (#21648)
https://github.com/microsoft/playwright/issues/21646
This commit is contained in:
parent
555cea38e7
commit
c691d1f436
|
|
@ -175,8 +175,10 @@ it.describe('Drag and drop', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should respect the drop effect', async ({ page, browserName, platform, trace }) => {
|
it('should respect the drop effect', async ({ page, browserName, isLinux, isMac, headless, trace }) => {
|
||||||
it.fixme(browserName === 'webkit' && platform !== 'linux', 'WebKit doesn\'t handle the drop effect correctly outside of linux.');
|
it.fixme(browserName === 'webkit' && !isLinux, 'WebKit doesn\'t handle the drop effect correctly outside of linux.');
|
||||||
|
it.fixme(browserName === 'webkit' && isLinux && !headless, 'https://github.com/microsoft/playwright/issues/21646');
|
||||||
|
it.fixme(browserName === 'chromium' && !isMac && !headless, 'https://github.com/microsoft/playwright/issues/21646');
|
||||||
it.slow(trace === 'on');
|
it.slow(trace === 'on');
|
||||||
|
|
||||||
expect(await testIfDropped('copy', 'copy')).toBe(true);
|
expect(await testIfDropped('copy', 'copy')).toBe(true);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue