Skip to content

Commit

Permalink
test(firefox): move AX tests to Chrome-only (puppeteer#4042)
Browse files Browse the repository at this point in the history
Let's not focus on AX for now for Firefox.
  • Loading branch information
aslushnikov authored and kiku-jw committed Apr 6, 2019
1 parent 34dca2f commit f54412d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/puppeteer.spec.js
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit f54412d

Please sign in to comment.