@@ -919,6 +919,9 @@ getJasmineRequireObj().Spec = function(j$) {
919
919
* @property {String } fullName - The full description including all ancestors of this spec.
920
920
* @property {String|null } parentSuiteId - The ID of the suite containing this spec, or null if this spec is not in a describe().
921
921
* @property {String } filename - The name of the file the spec was defined in.
922
+ * Note: The value may be incorrect if zone.js is installed or
923
+ * `it`/`fit`/`xit` have been replaced with versions that don't maintain the
924
+ * same call stack height as the originals.
922
925
* @property {ExpectationResult[] } failedExpectations - The list of expectations that failed during execution of this spec.
923
926
* @property {ExpectationResult[] } passedExpectations - The list of expectations that passed during execution of this spec.
924
927
* @property {ExpectationResult[] } deprecationWarnings - The list of deprecation warnings that occurred during execution this spec.
@@ -10478,6 +10481,9 @@ getJasmineRequireObj().Suite = function(j$) {
10478
10481
* @property {String } fullName - The full description including all ancestors of this suite.
10479
10482
* @property {String|null } parentSuiteId - The ID of the suite containing this suite, or null if this is not in another describe().
10480
10483
* @property {String } filename - The name of the file the suite was defined in.
10484
+ * Note: The value may be incorrect if zone.js is installed or
10485
+ * `describe`/`fdescribe`/`xdescribe` have been replaced with versions that
10486
+ * don't maintain the same call stack height as the originals.
10481
10487
* @property {ExpectationResult[] } failedExpectations - The list of expectations that failed in an {@link afterAll} for this suite.
10482
10488
* @property {ExpectationResult[] } deprecationWarnings - The list of deprecation warnings that occurred on this suite.
10483
10489
* @property {String } status - Once the suite has completed, this string represents the pass/fail status of this suite.
0 commit comments