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);
});