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

Unified Diff: test_runner.js

Issue 29858555: Issue 6391 - WebDriver: Fix runtime problen with Gecko and Firefox (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Updated comments Created Aug. 22, 2018, 5:36 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 | « test/runners/firefox_process.js ('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"];
+ return ["chromium_remote", "firefox"];
return runners.filter(runner => runnerDefinitions.hasOwnProperty(runner));
}
let runnerProcesses = configureRunners();
function addTestPaths(testPaths, recurse)
{
« no previous file with comments | « test/runners/firefox_process.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld