Commit 1f7acddd 1f7acddd3f0d23a224bf816b2216d6d9b8ccf606 by Nicolas Perriault

synced with master

2 parents e4b50f07 0c2183e9
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;
......