From 4a5929da55e57c37aca1814a631a866c661a927e Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 16 Dec 2019 18:47:38 -0700 Subject: [PATCH] fix(webkit): mark mixed content test as passing (#260) * roll WebKit to 1042 --- package.json | 2 +- test/ignorehttpserrors.spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3955582b83..edd62eb04c 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "playwright": { "chromium_revision": "724623", "firefox_revision": "1007", - "webkit_revision": "1038" + "webkit_revision": "1042" }, "scripts": { "unit": "node test/test.js", diff --git a/test/ignorehttpserrors.spec.js b/test/ignorehttpserrors.spec.js index 5dbc3b2f81..6cfbdda16f 100644 --- a/test/ignorehttpserrors.spec.js +++ b/test/ignorehttpserrors.spec.js @@ -43,7 +43,7 @@ module.exports.addTests = function({testRunner, expect, defaultBrowserOptions, p expect(error).toBe(null); expect(response.ok()).toBe(true); }); - it.skip(WEBKIT)('should work with mixed content', async({page, server, httpsServer}) => { + it('should work with mixed content', async({page, server, httpsServer}) => { httpsServer.setRoute('/mixedcontent.html', (req, res) => { res.end(``); });