Document the order property of jasmineStarted and jasmineDone
This commit is contained in:
@@ -9530,6 +9530,12 @@ getJasmineRequireObj().Runner = function(j$) {
|
|||||||
// In parallel mode, the jasmineStarted event is separately dispatched
|
// In parallel mode, the jasmineStarted event is separately dispatched
|
||||||
// by jasmine-npm. This event only reaches reporters in non-parallel.
|
// by jasmine-npm. This event only reaches reporters in non-parallel.
|
||||||
totalSpecsDefined,
|
totalSpecsDefined,
|
||||||
|
/**
|
||||||
|
* Information about the ordering (random or not) of this execution of the suite.
|
||||||
|
* @typedef Order
|
||||||
|
* @property {boolean} random - Whether the suite is running in random order
|
||||||
|
* @property {string} seed - The random seed
|
||||||
|
*/
|
||||||
order: order,
|
order: order,
|
||||||
parallel: false
|
parallel: false
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -103,6 +103,12 @@ getJasmineRequireObj().Runner = function(j$) {
|
|||||||
// In parallel mode, the jasmineStarted event is separately dispatched
|
// In parallel mode, the jasmineStarted event is separately dispatched
|
||||||
// by jasmine-npm. This event only reaches reporters in non-parallel.
|
// by jasmine-npm. This event only reaches reporters in non-parallel.
|
||||||
totalSpecsDefined,
|
totalSpecsDefined,
|
||||||
|
/**
|
||||||
|
* Information about the ordering (random or not) of this execution of the suite.
|
||||||
|
* @typedef Order
|
||||||
|
* @property {boolean} random - Whether the suite is running in random order
|
||||||
|
* @property {string} seed - The random seed
|
||||||
|
*/
|
||||||
order: order,
|
order: order,
|
||||||
parallel: false
|
parallel: false
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user