Skip to content

Commit

Permalink
test: update 'should handle custom dataTransfer' expectation (#20595)
Browse files Browse the repository at this point in the history
Headless linux was fixed by recent webkit roll, but it turns out the
test has been failing on webkit windows too.

#18013
  • Loading branch information
yury-s committed Feb 2, 2023
1 parent b803128 commit cf76d47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/page/page-drag.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ async function trackEvents(target: ElementHandle) {
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.skip(browserName === 'webkit' && isLinux && headless);
it.fixme(browserName === 'webkit' && isWindows);
await page.setContent(`<button draggable="true">Draggable</button>`);

const resultPromise = page.evaluate(() =>
Expand Down

0 comments on commit cf76d47

Please sign in to comment.