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

Commit ea09be4

Browse files
authored
fix(jasmine): Return the full test name in Jasmine test results. (#3842)
Fixes #3510
1 parent c9fad62 commit ea09be4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/frameworks/jasmine.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RunnerReporter.prototype.specDone = function(result) {
3030
}
3131

3232
var entry = {
33-
description: result.description,
33+
description: result.fullName,
3434
assertions: [],
3535
duration: new Date().getTime() - this.startTime.getTime()
3636
};

0 commit comments

Comments
 (0)