From 806fbd1d05fe88130b6ccf28913d6e2336316f15 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 6 Jan 2020 09:26:34 -0800 Subject: [PATCH] Revert "test: uncomment / fix webkit tests that time out (#379)" This reverts commit 2f3593bd9a3729152d085d0a89d634a546aa1b16. --- package.json | 2 +- test/accessibility.spec.js | 4 ++-- test/assets/beforeunload.html | 2 +- test/page.spec.js | 6 ++---- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index d39eb86d8c..b1cf09ebf8 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "playwright": { "chromium_revision": "724623", "firefox_revision": "1009", - "webkit_revision": "1061" + "webkit_revision": "1060" }, "scripts": { "unit": "node test/test.js", diff --git a/test/accessibility.spec.js b/test/accessibility.spec.js index 3c255299ac..6e07115dfc 100644 --- a/test/accessibility.spec.js +++ b/test/accessibility.spec.js @@ -21,7 +21,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROME, WEBKIT}) { const {beforeAll, beforeEach, afterAll, afterEach} = testRunner; describe('Accessibility', function() { - it.skip(WEBKIT)('should work', async function({page}) { + it('should work', async function({page}) { await page.setContent(` Accessibility Test @@ -99,7 +99,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROME, WEBKIT}) { }; expect(await page.accessibility.snapshot()).toEqual(golden); }); - it.skip(WEBKIT)('should report uninteresting nodes', async function({page}) { + it('should report uninteresting nodes', async function({page}) { await page.setContent(``); // autofocus happens after a delay in chrome these days await page.waitForFunction(() => document.activeElement.hasAttribute('autofocus')); diff --git a/test/assets/beforeunload.html b/test/assets/beforeunload.html index b246905190..3cef6763f3 100644 --- a/test/assets/beforeunload.html +++ b/test/assets/beforeunload.html @@ -1,7 +1,7 @@
beforeunload demo.