Merge branch 'main' into 3.99
This commit is contained in:
@@ -739,6 +739,12 @@ getJasmineRequireObj().Spec = function(j$) {
|
|||||||
this.expectationFactory = attrs.expectationFactory;
|
this.expectationFactory = attrs.expectationFactory;
|
||||||
this.asyncExpectationFactory = attrs.asyncExpectationFactory;
|
this.asyncExpectationFactory = attrs.asyncExpectationFactory;
|
||||||
this.resultCallback = attrs.resultCallback || function() {};
|
this.resultCallback = attrs.resultCallback || function() {};
|
||||||
|
/**
|
||||||
|
* The unique ID of this spec.
|
||||||
|
* @name Spec#id
|
||||||
|
* @readonly
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
this.id = attrs.id;
|
this.id = attrs.id;
|
||||||
/**
|
/**
|
||||||
* The description passed to the {@link it} that created this spec.
|
* The description passed to the {@link it} that created this spec.
|
||||||
@@ -9714,6 +9720,12 @@ getJasmineRequireObj().Suite = function(j$) {
|
|||||||
*/
|
*/
|
||||||
function Suite(attrs) {
|
function Suite(attrs) {
|
||||||
this.env = attrs.env;
|
this.env = attrs.env;
|
||||||
|
/**
|
||||||
|
* The unique ID of this suite.
|
||||||
|
* @name Suite#id
|
||||||
|
* @readonly
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
this.id = attrs.id;
|
this.id = attrs.id;
|
||||||
/**
|
/**
|
||||||
* The parent of this suite, or null if this is the top suite.
|
* The parent of this suite, or null if this is the top suite.
|
||||||
|
|||||||
@@ -7,6 +7,12 @@ getJasmineRequireObj().Spec = function(j$) {
|
|||||||
this.expectationFactory = attrs.expectationFactory;
|
this.expectationFactory = attrs.expectationFactory;
|
||||||
this.asyncExpectationFactory = attrs.asyncExpectationFactory;
|
this.asyncExpectationFactory = attrs.asyncExpectationFactory;
|
||||||
this.resultCallback = attrs.resultCallback || function() {};
|
this.resultCallback = attrs.resultCallback || function() {};
|
||||||
|
/**
|
||||||
|
* The unique ID of this spec.
|
||||||
|
* @name Spec#id
|
||||||
|
* @readonly
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
this.id = attrs.id;
|
this.id = attrs.id;
|
||||||
/**
|
/**
|
||||||
* The description passed to the {@link it} that created this spec.
|
* The description passed to the {@link it} that created this spec.
|
||||||
|
|||||||
@@ -5,6 +5,12 @@ getJasmineRequireObj().Suite = function(j$) {
|
|||||||
*/
|
*/
|
||||||
function Suite(attrs) {
|
function Suite(attrs) {
|
||||||
this.env = attrs.env;
|
this.env = attrs.env;
|
||||||
|
/**
|
||||||
|
* The unique ID of this suite.
|
||||||
|
* @name Suite#id
|
||||||
|
* @readonly
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
this.id = attrs.id;
|
this.id = attrs.id;
|
||||||
/**
|
/**
|
||||||
* The parent of this suite, or null if this is the top suite.
|
* The parent of this suite, or null if this is the top suite.
|
||||||
|
|||||||
Reference in New Issue
Block a user