From 80cc3a7c3e751ec394f21c2049e88a1e3a45011c Mon Sep 17 00:00:00 2001 From: Willi Goesgens Date: Mon, 2 Mar 2015 14:55:08 +0100 Subject: [PATCH] Add stacktrace from the exception to the output; the jasmine provided stacktrace is pretty useless here. --- js/server/tests/shell-foxx-manager-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/server/tests/shell-foxx-manager-spec.js b/js/server/tests/shell-foxx-manager-spec.js index 36710d0ea7..a3685846ee 100644 --- a/js/server/tests/shell-foxx-manager-spec.js +++ b/js/server/tests/shell-foxx-manager-spec.js @@ -100,7 +100,7 @@ describe("Foxx Manager", function() { FoxxManager.install(app.name, mount); FoxxManager.uninstall(mount); } catch(e) { - expect(e).toBeUndefined("Could not install " + app.name); + expect(e).toBeUndefined("Could not install " + app.name + " - \n" + e.stack); try { FoxxManager.uninstall(mount, { force: true }); } catch(err) {