mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
test: disable test on mac 10.14 (#6157)
This commit is contained in:
parent
bd8433ba49
commit
ec07a581f7
@ -16,6 +16,7 @@
|
||||
*/
|
||||
|
||||
import url from 'url';
|
||||
import os from 'os';
|
||||
import { test as it, expect } from './config/pageTest';
|
||||
import { slowTest } from './config/browserTest';
|
||||
import { expectedSSLError } from './config/utils';
|
||||
@ -514,7 +515,8 @@ it('should not throw unhandled rejections on invalid url', async ({page, server}
|
||||
expect(e.toString()).toContain('Panel Title');
|
||||
});
|
||||
|
||||
it('should not crash when RTCPeerConnection is used', async ({ page, server }) => {
|
||||
it('should not crash when RTCPeerConnection is used', async ({ page, server, browserName, platform }) => {
|
||||
it.fixme(browserName === 'webkit' && platform === 'darwin' && parseInt(os.release(), 10) === 18, 'Does not work on MacOS 10.14');
|
||||
server.setRoute('/rtc.html', (_, res) => {
|
||||
res.end(`
|
||||
<!DOCTYPE html>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user