jasmine-core 5.11.0 → 6.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -29,7 +29,7 @@ Microsoft Edge) as well as Node.
29
29
 
30
30
  | Environment | Supported versions |
31
31
  |-------------------|----------------------------------|
32
- | Node | 18.20.5+*, 20, 22, 24 |
32
+ | Node | 20, 22, 24 |
33
33
  | Safari | 16*, 17* |
34
34
  | Chrome | Evergreen |
35
35
  | Firefox | Evergreen, 102*, 115*, 128*, 140 |
@@ -26,7 +26,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
26
  var jasmineRequire = window.jasmineRequire || require('./jasmine.js');
27
27
 
28
28
  jasmineRequire.html = function(j$) {
29
- j$.ResultsNode = jasmineRequire.ResultsNode();
29
+ j$.private.ResultsNode = jasmineRequire.ResultsNode();
30
30
  j$.HtmlReporter = jasmineRequire.HtmlReporter(j$);
31
31
  j$.QueryString = jasmineRequire.QueryString();
32
32
  j$.HtmlSpecFilter = jasmineRequire.HtmlSpecFilter();
@@ -35,7 +35,7 @@ jasmineRequire.html = function(j$) {
35
35
 
36
36
  jasmineRequire.HtmlReporter = function(j$) {
37
37
  function ResultsStateBuilder() {
38
- this.topResults = new j$.ResultsNode({}, '', null);
38
+ this.topResults = new j$.private.ResultsNode({}, '', null);
39
39
  this.currentParent = this.topResults;
40
40
  this.specsExecuted = 0;
41
41
  this.failureCount = 0;
@@ -793,7 +793,7 @@ jasmineRequire.HtmlReporter = function(j$) {
793
793
  const el = createElement(type);
794
794
  let children;
795
795
 
796
- if (j$.isArray_(childrenArrayOrVarArgs)) {
796
+ if (j$.private.isArray(childrenArrayOrVarArgs)) {
797
797
  children = childrenArrayOrVarArgs;
798
798
  } else {
799
799
  children = [];