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

Unified Diff: test_runner.js

Issue 29874649: Issue 6822 - Report browser test errors (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: throw instead of Promise.reject() Created Sept. 21, 2018, 3:39 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/webdriver.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
@@ -149,32 +149,39 @@
processes.map(currentProcess =>
runnerDefinitions[currentProcess](
bundle, bundleFilename,
browserFiles.map(
file => path.relative(path.join(__dirname, "test", "browser"),
file).replace(/\.js$/, "")
)
)
- )
- )
+ // We need to convert rejected promise to a resolved one
+ // or the test will not let close the webdriver.
+ .catch(e => e)
+ )).then(results =>
+ {
+ let errors = results.filter(e => typeof e != "undefined");
+ if (errors.length)
+ throw `Browser unit test failed: ${errors.join(", ")}`;
+ })
);
}
if (process.argv.length > 2)
addTestPaths(process.argv.slice(2), true);
else
{
addTestPaths(
[path.join(__dirname, "test"), path.join(__dirname, "test", "browser")],
true
);
}
-Promise.resolve(runBrowserTests(runnerProcesses)).catch(error =>
-{
- console.error("Failed running browser tests");
- console.error(error);
-}).then(() =>
+runBrowserTests(runnerProcesses).then(() =>
{
if (unitFiles.length)
nodeunit.reporters.default.run(unitFiles);
+}).catch(error =>
+{
+ console.error(error);
+ process.exit(1);
});
« no previous file with comments | « test/runners/webdriver.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld