Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(jasmine): Return the full test name in Jasmine test results. (#3842)
Browse files Browse the repository at this point in the history
Fixes #3510
  • Loading branch information
heathkit authored Dec 19, 2016
1 parent c9fad62 commit ea09be4
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 ea09be4

Please sign in to comment.