diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index fda51281..c32d9ab3 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -776,7 +776,7 @@ getJasmineRequireObj().Spec = function(j$) { /** * @typedef SpecResult - * @property {Int} id - The unique id of this spec. + * @property {String} id - The unique id of this spec. * @property {String} description - The description passed to the {@link it} that created this spec. * @property {String} fullName - The full description including all ancestors of this spec. * @property {Expectation[]} failedExpectations - The list of expectations that failed during execution of this spec. @@ -9631,7 +9631,7 @@ getJasmineRequireObj().Suite = function(j$) { Suite.prototype.reset = function() { /** * @typedef SuiteResult - * @property {Int} id - The unique id of this suite. + * @property {String} id - The unique id of this suite. * @property {String} description - The description text passed to the {@link describe} that made this suite. * @property {String} fullName - The full description including all ancestors of this suite. * @property {Expectation[]} failedExpectations - The list of expectations that failed in an {@link afterAll} for this suite. diff --git a/src/core/Spec.js b/src/core/Spec.js index 531e0046..f4149622 100644 --- a/src/core/Spec.js +++ b/src/core/Spec.js @@ -39,7 +39,7 @@ getJasmineRequireObj().Spec = function(j$) { /** * @typedef SpecResult - * @property {Int} id - The unique id of this spec. + * @property {String} id - The unique id of this spec. * @property {String} description - The description passed to the {@link it} that created this spec. * @property {String} fullName - The full description including all ancestors of this spec. * @property {Expectation[]} failedExpectations - The list of expectations that failed during execution of this spec. diff --git a/src/core/Suite.js b/src/core/Suite.js index 2a0c928c..449ff861 100644 --- a/src/core/Suite.js +++ b/src/core/Suite.js @@ -106,7 +106,7 @@ getJasmineRequireObj().Suite = function(j$) { Suite.prototype.reset = function() { /** * @typedef SuiteResult - * @property {Int} id - The unique id of this suite. + * @property {String} id - The unique id of this suite. * @property {String} description - The description text passed to the {@link describe} that made this suite. * @property {String} fullName - The full description including all ancestors of this suite. * @property {Expectation[]} failedExpectations - The list of expectations that failed in an {@link afterAll} for this suite.