From f54412d6e127bcca249fd06e9123f135f60180fe Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 21 Feb 2019 10:07:13 -0800 Subject: [PATCH] test(firefox): move AX tests to Chrome-only (#4042) Let's not focus on AX for now for Firefox. --- test/puppeteer.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/puppeteer.spec.js b/test/puppeteer.spec.js index bbd3e228f31d3..2afb463f97315 100644 --- a/test/puppeteer.spec.js +++ b/test/puppeteer.spec.js @@ -117,7 +117,6 @@ module.exports.addTests = ({testRunner, product, puppeteer, Errors, DeviceDescri // Page-level tests that are given a browser, a context and a page. // Each test is launched in a new browser context. - require('./accessibility.spec.js').addTests(testOptions); require('./browser.spec.js').addTests(testOptions); require('./click.spec.js').addTests(testOptions); require('./cookies.spec.js').addTests(testOptions); @@ -140,6 +139,7 @@ module.exports.addTests = ({testRunner, product, puppeteer, Errors, DeviceDescri require('./waittask.spec.js').addTests(testOptions); require('./worker.spec.js').addTests(testOptions); if (CHROME) { + require('./accessibility.spec.js').addTests(testOptions); require('./CDPSession.spec.js').addTests(testOptions); require('./coverage.spec.js').addTests(testOptions); require('./chromiumonly.spec.js').addTests(testOptions);