Skip to content

Commit

Permalink
JS: report stack trace when test failed
Browse files Browse the repository at this point in the history
(cherry picked from commit 70004ed)
  • Loading branch information
develar authored and bashor committed Sep 20, 2013
1 parent 0182ec2 commit f4575b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/js.translator/testFiles/jsTester/jsTester.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var JsTests = (function () {
}
catch (fail) {
if (fail != failedTest) {
reporter.reportError("Unexpected exception " + fail);
reporter.reportError("Unexpected exception " + fail + "\n" + fail.stack);
}
reporter.testFail(testName);
return;
Expand Down

0 comments on commit f4575b8

Please sign in to comment.