Squashed commit of the following:

commit 45fc50c09e60aafc0134248a9fd9c55db0b413d2
Author: Paul Meyerle <pmeyerle@smartertravelmedia.com>
Date:   Thu Mar 13 14:30:30 2014 -0400

    suiteDone should reference the suite id

Closes gh-129.
This commit is contained in:
Paul Meyerle 2014-07-01 09:19:48 -07:00 committed by vladikoff
parent 568f01f5d5
commit 0a34006863

View File

@ -232,7 +232,7 @@ module.exports = function(grunt) {
}); });
phantomjs.on('jasmine.suiteDone', function(suiteMetaData) { phantomjs.on('jasmine.suiteDone', function(suiteMetaData) {
suites[currentSuite].time = suiteMetaData.duration / 1000; suites[suiteMetaData.id].time = suiteMetaData.duration / 1000;
if(indentLevel > 1) { if(indentLevel > 1) {
indentLevel--; indentLevel--;