synced with master
Showing
2 changed files
with
6 additions
and
1 deletions
1 | CasperJS Changelog | 1 | CasperJS Changelog |
2 | ================== | 2 | ================== |
3 | 3 | ||
4 | XXXX-XX-XX, v1.0.1 | ||
5 | ------------------ | ||
6 | |||
7 | - fixed [#336](https://github.com/n1k0/casperjs/issues/336) - Test result duration may have an exotic value | ||
8 | |||
4 | 2012-12-24, v1.0.0 | 9 | 2012-12-24, v1.0.0 |
5 | ------------------ | 10 | ------------------ |
6 | 11 | ... | ... |
... | @@ -70,7 +70,7 @@ var Tester = function Tester(casper, options) { | ... | @@ -70,7 +70,7 @@ var Tester = function Tester(casper, options) { |
70 | this.aborted = false; | 70 | this.aborted = false; |
71 | this.executed = 0; | 71 | this.executed = 0; |
72 | this.currentTestFile = null; | 72 | this.currentTestFile = null; |
73 | this.currentTestStartTime = null; | 73 | this.currentTestStartTime = new Date(); |
74 | this.currentSuite = undefined; | 74 | this.currentSuite = undefined; |
75 | this.currentSuiteNum = 0; | 75 | this.currentSuiteNum = 0; |
76 | this.lastAssertTime = 0; | 76 | this.lastAssertTime = 0; | ... | ... |
-
Please register or sign in to post a comment