mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-11 12:33:45 +03:00
test: unskip loading in HTMLImageElement.prototype in WebKit (#22907)
It was fixed by roll to r1841. Fixes https://github.com/microsoft/playwright/issues/22738
This commit is contained in:
parent
2ead6e530f
commit
2e61a389d9
@ -234,9 +234,9 @@ it('make sure that XMLHttpRequest upload events are emitted correctly', async ({
|
||||
expect(events).toEqual(['loadstart', 'progress', 'load', 'loadend']);
|
||||
});
|
||||
|
||||
it('loading in HTMLImageElement.prototype', async ({ page, server, browserName }) => {
|
||||
it('loading in HTMLImageElement.prototype', async ({ page, server, browserName, isMac }) => {
|
||||
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22738' });
|
||||
it.fixme(browserName === 'webkit');
|
||||
it.skip(browserName === 'webkit' && isMac && parseInt(os.release(), 10) < 21, 'Does not work on macOS 11');
|
||||
await page.goto(server.EMPTY_PAGE);
|
||||
const defined = await page.evaluate(() => 'loading' in HTMLImageElement.prototype);
|
||||
expect(defined).toBeTruthy();
|
||||
|
Loading…
Reference in New Issue
Block a user