new processAssertionResult now processes things in the right order
Showing
1 changed file
with
4 additions
and
1 deletions
... | @@ -656,7 +656,10 @@ var Tester = function Tester(casper, options) { | ... | @@ -656,7 +656,10 @@ var Tester = function Tester(casper, options) { |
656 | success: false, | 656 | success: false, |
657 | type: "uncaughtError", | 657 | type: "uncaughtError", |
658 | file: this.currentTestFile, | 658 | file: this.currentTestFile, |
659 | message: utils.isObject(error) ? error.message : error | 659 | message: utils.isObject(error) ? error.message : error, |
660 | values: { | ||
661 | error: error | ||
662 | } | ||
660 | }); | 663 | }); |
661 | }; | 664 | }; |
662 | }; | 665 | }; | ... | ... |
-
Please register or sign in to post a comment