Skip to content

Commit

Permalink
fix(jasmine): Return the full test name in Jasmine test results.
Browse files Browse the repository at this point in the history
  • Loading branch information
heathkit committed Dec 19, 2016
1 parent d904a5d commit 15c2427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/frameworks/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RunnerReporter.prototype.specDone = function(result) {
}

var entry = {
description: result.description,
description: result.fullName,
assertions: [],
duration: new Date().getTime() - this.startTime.getTime()
};
Expand Down

0 comments on commit 15c2427

Please sign in to comment.