Commit f33ecd92 f33ecd92bf327cd39cee24fd4a6fe7422ec1b86f by Nicolas Perriault

fixed test result duration could have exotic value

1 parent 9e0ba3cb
...@@ -91,7 +91,7 @@ var Tester = function Tester(casper, options) { ...@@ -91,7 +91,7 @@ var Tester = function Tester(casper, options) {
91 }; 91 };
92 92
93 // measuring test duration 93 // measuring test duration
94 this.currentTestStartTime = null; 94 this.currentTestStartTime = new Date();
95 this.lastAssertTime = 0; 95 this.lastAssertTime = 0;
96 96
97 this.configure(); 97 this.configure();
......