From 69fe6ece43c13926803a5deeb72228c8fc7be686 Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Fri, 10 Jan 2020 21:54:42 -0800 Subject: [PATCH] test: mark web sdk tests as non-core --- test/web.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/web.spec.js b/test/web.spec.js index f9cf73e6dc..12b41f0800 100644 --- a/test/web.spec.js +++ b/test/web.spec.js @@ -14,12 +14,12 @@ * limitations under the License. */ -module.exports.describe = function({testRunner, expect, defaultBrowserOptions, playwright, product, WEBKIT}) { +module.exports.describe = function({testRunner, expect, defaultBrowserOptions, playwright, product, CHROME, FFOX}) { const {describe, xdescribe, fdescribe} = testRunner; const {it, fit, xit, dit} = testRunner; const {beforeAll, beforeEach, afterAll, afterEach} = testRunner; - describe.skip(WEBKIT)('Web', function() { + (CHROME || FFOX) && describe('Web SDK', function() { beforeAll(async state => { state.controlledBrowserServer = await playwright.launchServer({ ...defaultBrowserOptions, pipe: false }); state.hostBrowserServer = await playwright.launchServer(defaultBrowserOptions);