Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test_runner.js

Issue 29850577: Issue 6391 - Temporarily disable Firefox testing by default (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Update README Created Aug. 8, 2018, 4:17 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test_runner.js
===================================================================
--- a/test_runner.js
+++ b/test_runner.js
@@ -42,17 +42,17 @@
};
function configureRunners()
{
let runners = "BROWSER_TEST_RUNNERS" in process.env ?
process.env.BROWSER_TEST_RUNNERS.split(",") : [];
if (runners.length == 0)
- return ["chromium_remote", "firefox"];
+ return ["chromium_remote"];
return runners.filter(runner => runnerDefinitions.hasOwnProperty(runner));
}
let runnerProcesses = configureRunners();
function addTestPaths(testPaths, recurse)
{
« no previous file with comments | « README.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld