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