Skip to content

Commit

Permalink
comment is now shown in asserts fail
Browse files Browse the repository at this point in the history
  • Loading branch information
hkollmann committed Feb 19, 2021
1 parent e39c02d commit d700dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/class/qxl/testtapper/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ qx.Class.define("qxl.testtapper.Application", {
that._cnt++;
if (item.exception) {
if (item.exception.message) {
let message = item.exception.message;
let message = item.exception.message.toString();
this.info(`not ok ${that._cnt} - ${test} - [${numberFormat.format(timeDiff)}] - ${message}`);
let [testClass, ...testName] = test.split(":");
this.addTreeItem("not ok", that._cnt, testClass, testName.join(""), message);
Expand Down

0 comments on commit d700dfa

Please sign in to comment.