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: Updated patch Created Sept. 18, 2018, 10:23 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
« test/browser/_bootstrap.js ('K') | « 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
@@ -148,33 +148,38 @@
Promise.all(
processes.map(currentProcess =>
runnerDefinitions[currentProcess](
bundle, bundleFilename,
browserFiles.map(
file => path.relative(path.join(__dirname, "test", "browser"),
file).replace(/\.js$/, "")
)
+ ).catch(error => Promise.reject(
+ `Unit test "${currentProcess}" failed: ${error}`)
)
)
)
);
}
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(() =>
+Promise.resolve(runBrowserTests(runnerProcesses)).then(() =>
{
if (unitFiles.length)
nodeunit.reporters.default.run(unitFiles);
+}).catch(error =>
+{
+ if (!error)
+ console.error("Failed running browser tests");
Sebastian Noack 2018/09/19 08:16:51 In which case if the above promise rejected with n
hub 2018/09/20 00:19:56 Fixed it.
+ else
+ console.error(error);
+ process.exit(1);
});
« test/browser/_bootstrap.js ('K') | « test/runners/webdriver.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld