Skip to content

Commit

Permalink
fix bug causing first suite to not be reported
Browse files Browse the repository at this point in the history
  • Loading branch information
Rick Kilgore committed Jan 17, 2014
1 parent 5a9b99f commit 6e0dbfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jasmine-node/reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@

messages.push(msg);
} else {
if (element.id) {
if (element.id != null) {
suiteResult = this.suiteResults_[element.id.toString()];
element.name = element.name + " - " + suiteResult.runtime + " ms";
}
Expand Down

0 comments on commit 6e0dbfc

Please sign in to comment.