mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-08 12:28:46 +03:00
test: update 'should handle custom dataTransfer' expectation (#20595)
Headless linux was fixed by recent webkit roll, but it turns out the test has been failing on webkit windows too. #18013
This commit is contained in:
parent
b803128a81
commit
cf76d47e22
@ -391,9 +391,9 @@ async function trackEvents(target: ElementHandle) {
|
|||||||
return eventsHandle;
|
return eventsHandle;
|
||||||
}
|
}
|
||||||
|
|
||||||
it('should handle custom dataTransfer', async ({ page, browserName, isLinux, headless }) => {
|
it('should handle custom dataTransfer', async ({ page, browserName, isWindows }) => {
|
||||||
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/18013' });
|
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/18013' });
|
||||||
it.skip(browserName === 'webkit' && isLinux && headless);
|
it.fixme(browserName === 'webkit' && isWindows);
|
||||||
await page.setContent(`<button draggable="true">Draggable</button>`);
|
await page.setContent(`<button draggable="true">Draggable</button>`);
|
||||||
|
|
||||||
const resultPromise = page.evaluate(() =>
|
const resultPromise = page.evaluate(() =>
|
||||||
|
Loading…
Reference in New Issue
Block a user