Commit 1f7acddd 1f7acddd3f0d23a224bf816b2216d6d9b8ccf606 by Nicolas Perriault

synced with master

2 parents e4b50f07 0c2183e9
CasperJS Changelog
==================
XXXX-XX-XX, v1.0.1
------------------
- fixed [#336](https://github.com/n1k0/casperjs/issues/336) - Test result duration may have an exotic value
2012-12-24, v1.0.0
------------------
......
......@@ -70,7 +70,7 @@ var Tester = function Tester(casper, options) {
this.aborted = false;
this.executed = 0;
this.currentTestFile = null;
this.currentTestStartTime = null;
this.currentTestStartTime = new Date();
this.currentSuite = undefined;
this.currentSuiteNum = 0;
this.lastAssertTime = 0;
......