From 8b580110b70aadd6ac190b5a6a077b49b904a19e Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 6 Jan 2022 09:08:00 -0800 Subject: [PATCH] test: mark video & audio test as passing on mac12 (#11216) --- tests/capabilities.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/capabilities.spec.ts b/tests/capabilities.spec.ts index b1c88cb163..b58b939887 100644 --- a/tests/capabilities.spec.ts +++ b/tests/capabilities.spec.ts @@ -87,7 +87,6 @@ it('should play audio #smoke', async ({ page, server, browserName, platform }) = it.fixme(browserName === 'firefox' && platform === 'win32', 'https://github.com/microsoft/playwright/issues/10887'); it.fixme(browserName === 'firefox' && platform === 'linux', 'https://github.com/microsoft/playwright/issues/10887'); it.fixme(browserName === 'webkit' && platform === 'win32', 'https://github.com/microsoft/playwright/issues/10892'); - it.fixme(browserName === 'webkit' && platform === 'darwin', 'https://github.com/microsoft/playwright/issues/10892'); await page.goto(server.EMPTY_PAGE); await page.setContent(``); await page.$eval('audio', e => e.play()); @@ -120,7 +119,6 @@ it('should support webgl 2 #smoke', async ({ page, browserName, headless }) => { it('should not crash on page with mp4 #smoke', async ({ page, server, platform, browserName }) => { it.fixme(browserName === 'webkit' && platform === 'win32', 'https://github.com/microsoft/playwright/issues/11009, times out in setContent'); - it.fail(browserName === 'webkit' && platform === 'darwin' && parseInt(os.release(), 10) >= 21, 'https://github.com/microsoft/playwright/issues/11009'); await page.setContent(``); await page.waitForTimeout(1000); });