Omit irrelevant properties from specStarted

This commit is contained in:
Steve Gravrock
2025-09-21 13:58:02 -07:00
parent 4020da25a4
commit 970cbdc69c
10 changed files with 406 additions and 60 deletions

View File

@@ -96,7 +96,7 @@ getJasmineRequireObj().JsApiReporter = function(j$) {
* @function
* @param {Number} index - The position in the specs list to start from.
* @param {Number} length - Maximum number of specs results to return.
* @return {SpecResult[]}
* @return {SpecDoneEvent[]}
*/
this.specResults = function(index, length) {
return specs.slice(index, index + length);
@@ -107,7 +107,7 @@ getJasmineRequireObj().JsApiReporter = function(j$) {
* @name jsApiReporter#specs
* @since 2.0.0
* @function
* @return {SpecResult[]}
* @return {SpecDoneEvent[]}
*/
this.specs = function() {
return specs;