jasmine-core 5.0.0-alpha.1 → 5.0.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
@@ -30,13 +30,13 @@ for information on writing specs, and [the FAQ](https://jasmine.github.io/pages/
30
30
  Jasmine tests itself across popular browsers (Safari, Chrome, Firefox, and
31
31
  Microsoft Edge) as well as Node.
32
32
 
33
- | Environment | Supported versions |
34
- |-------------------|--------------------|
35
- | Node | 16.14-16.19, 18 |
36
- | Safari | 15-16 |
37
- | Chrome | Evergreen |
38
- | Firefox | Evergreen, 102 |
39
- | Edge | Evergreen |
33
+ | Environment | Supported versions |
34
+ |-------------------|---------------------|
35
+ | Node | 18, 20 |
36
+ | Safari | 15-16 |
37
+ | Chrome | Evergreen |
38
+ | Firefox | Evergreen, 102 |
39
+ | Edge | Evergreen |
40
40
 
41
41
  For evergreen browsers, each version of Jasmine is tested against the version of the browser that is available to us
42
42
  at the time of release. Other browsers, as well as older & newer versions of some supported browsers, are likely to work.
@@ -530,14 +530,13 @@ jasmineRequire.HtmlReporter = function(j$) {
530
530
  if (noExpectations(resultNode.result)) {
531
531
  specDescription = 'SPEC HAS NO EXPECTATIONS ' + specDescription;
532
532
  }
533
- if (
534
- resultNode.result.status === 'pending' &&
535
- resultNode.result.pendingReason !== ''
536
- ) {
537
- specDescription =
538
- specDescription +
539
- ' PENDING WITH MESSAGE: ' +
540
- resultNode.result.pendingReason;
533
+ if (resultNode.result.status === 'pending') {
534
+ if (resultNode.result.pendingReason !== '') {
535
+ specDescription +=
536
+ ' PENDING WITH MESSAGE: ' + resultNode.result.pendingReason;
537
+ } else {
538
+ specDescription += ' PENDING';
539
+ }
541
540
  }
542
541
  specListNode.appendChild(
543
542
  createDom(
@@ -55,9 +55,6 @@ body {
55
55
  position: fixed;
56
56
  right: 100%;
57
57
  }
58
- .jasmine_html-reporter .jasmine-version {
59
- color: #aaa;
60
- }
61
58
  .jasmine_html-reporter .jasmine-banner {
62
59
  margin-top: 14px;
63
60
  }
@@ -169,10 +166,11 @@ body {
169
166
  }
170
167
  .jasmine_html-reporter .jasmine-bar.jasmine-menu {
171
168
  background-color: #fff;
172
- color: #aaa;
169
+ color: #000;
173
170
  }
174
171
  .jasmine_html-reporter .jasmine-bar.jasmine-menu a {
175
- color: #333;
172
+ color: blue;
173
+ text-decoration: underline;
176
174
  }
177
175
  .jasmine_html-reporter .jasmine-bar a {
178
176
  color: white;
@@ -10713,5 +10713,5 @@ getJasmineRequireObj().UserContext = function(j$) {
10713
10713
  };
10714
10714
 
10715
10715
  getJasmineRequireObj().version = function() {
10716
- return '5.0.0-alpha.1';
10716
+ return '5.0.0';
10717
10717
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jasmine-core",
3
3
  "license": "MIT",
4
- "version": "5.0.0-alpha.1",
4
+ "version": "5.0.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jasmine/jasmine.git"
@@ -36,16 +36,16 @@
36
36
  "devDependencies": {
37
37
  "eslint": "^8.36.0",
38
38
  "eslint-plugin-compat": "^4.0.0",
39
- "glob": "^9.3.1",
39
+ "glob": "^10.2.3",
40
40
  "grunt": "^1.0.4",
41
41
  "grunt-cli": "^1.3.2",
42
42
  "grunt-contrib-compress": "^2.0.0",
43
43
  "grunt-contrib-concat": "^2.0.0",
44
44
  "grunt-css-url-embed": "^1.11.1",
45
45
  "grunt-sass": "^3.0.2",
46
- "jasmine": "github:jasmine/jasmine-npm#5.0",
46
+ "jasmine": "5.0.0-beta.0",
47
47
  "jasmine-browser-runner": "^1.0.0",
48
- "jsdom": "^21.1.1",
48
+ "jsdom": "^22.0.0",
49
49
  "load-grunt-tasks": "^5.1.0",
50
50
  "prettier": "1.17.1",
51
51
  "sass": "^1.58.3",