fixed broken Tester.getCurrentSuiteId()
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -993,7 +993,7 @@ Tester.prototype.findTestFiles = function findTestFiles(dir) { | ... | @@ -993,7 +993,7 @@ Tester.prototype.findTestFiles = function findTestFiles(dir) { |
993 | */ | 993 | */ |
994 | Tester.prototype.getCurrentSuiteId = function getCurrentSuiteId() { | 994 | Tester.prototype.getCurrentSuiteId = function getCurrentSuiteId() { |
995 | "use strict"; | 995 | "use strict"; |
996 | return casper.test.currentSuiteNum + "-" + casper.step; | 996 | return this.casper.test.currentSuiteNum + "-" + this.casper.step; |
997 | }; | 997 | }; |
998 | 998 | ||
999 | /** | 999 | /** | ... | ... |
-
Please register or sign in to post a comment