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

Unified Diff: test_runner.js

Issue 29940622: Issue 7116 Run browser test in Microsoft Edge (Closed)
Patch Set: Created Nov. 9, 2018, 7:44 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/edge_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
diff --git a/test_runner.js b/test_runner.js
index 03099b7cc50190f0847b517140e974fe286b264f..4b04fc03d2836c076794a89f1b4f53f99a81b515 100644
--- a/test_runner.js
+++ b/test_runner.js
@@ -28,6 +28,7 @@ const webpack = require("webpack");
const chromiumRemoteProcess = require("./test/runners/chromium_remote_process");
const chromiumProcess = require("./test/runners/chromium_process");
+const edgeProcess = require("./test/runners/edge_process");
const firefoxProcess = require("./test/runners/firefox_process");
let unitFiles = [];
@@ -38,6 +39,7 @@ let runnerDefinitions = {
chromium_remote: chromiumRemoteProcess,
// Chromium with WebDriver (requires Chromium >= 63.0.3239)
chromium: chromiumProcess,
+ edge: edgeProcess,
firefox: firefoxProcess
};
@@ -51,7 +53,7 @@ function configureRunners()
// We default to not using the Chromium remote interface on Windows,
// as it fails.
if (process.platform == "win32")
- return ["chromium", "firefox"];
+ return ["chromium", "edge", "firefox"];
return ["chromium_remote", "firefox"];
}
« no previous file with comments | « test/runners/edge_process.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld