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

Unified Diff: test_runner.js

Issue 29891693: Issue 6987 - Fix regression preventing running individual tests (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Created Sept. 26, 2018, 2:50 a.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 | « no previous file | 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
@@ -114,17 +114,17 @@
}
});
});
}
function runBrowserTests(processes)
{
if (!browserFiles.length)
- return;
+ return Promise.resolve();
Manish Jethani 2018/09/26 10:36:49 LGTM, for next bookmark.
let nodeunitPath = path.join(__dirname, "node_modules", "nodeunit",
"examples", "browser", "nodeunit.js");
let bundleFilename = "bundle.js";
return webpackInMemory(bundleFilename, {
entry: path.join(__dirname, "test", "browser", "_bootstrap.js"),
module: {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld