jasmine-core 5.9.0 → 5.10.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 +7 -7
- package/lib/jasmine-core/jasmine-html.js +5 -0
- package/lib/jasmine-core/jasmine.css +3 -0
- package/lib/jasmine-core/jasmine.js +781 -483
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,13 +27,13 @@ for information on writing specs, and [the FAQ](https://jasmine.github.io/pages/
|
|
|
27
27
|
Jasmine tests itself across popular browsers (Safari, Chrome, Firefox, and
|
|
28
28
|
Microsoft Edge) as well as Node.
|
|
29
29
|
|
|
30
|
-
| Environment | Supported versions
|
|
31
|
-
|
|
32
|
-
| Node | 18.20.5+*, 20, 22, 24
|
|
33
|
-
| Safari | 15*, 16*, 17*
|
|
34
|
-
| Chrome | Evergreen
|
|
35
|
-
| Firefox | Evergreen, 102*, 115*, 128 |
|
|
36
|
-
| Edge | Evergreen
|
|
30
|
+
| Environment | Supported versions |
|
|
31
|
+
|-------------------|----------------------------------|
|
|
32
|
+
| Node | 18.20.5+*, 20, 22, 24 |
|
|
33
|
+
| Safari | 15*, 16*, 17* |
|
|
34
|
+
| Chrome | Evergreen |
|
|
35
|
+
| Firefox | Evergreen, 102*, 115*, 128*, 140 |
|
|
36
|
+
| Edge | Evergreen |
|
|
37
37
|
|
|
38
38
|
For evergreen browsers, each version of Jasmine is tested against the version of the browser that is available to us
|
|
39
39
|
at the time of release. Other browsers, as well as older & newer versions of some supported browsers, are likely to work.
|
|
@@ -557,6 +557,11 @@ jasmineRequire.HtmlReporter = function(j$) {
|
|
|
557
557
|
'a',
|
|
558
558
|
{ href: specHref(resultNode.result) },
|
|
559
559
|
specDescription
|
|
560
|
+
),
|
|
561
|
+
createDom(
|
|
562
|
+
'span',
|
|
563
|
+
{ className: 'jasmine-spec-duration' },
|
|
564
|
+
'(' + resultNode.result.duration + 'ms)'
|
|
560
565
|
)
|
|
561
566
|
)
|
|
562
567
|
);
|
|
@@ -229,6 +229,9 @@ body {
|
|
|
229
229
|
.jasmine_html-reporter .jasmine-specs li.jasmine-excluded a:before {
|
|
230
230
|
content: "• ";
|
|
231
231
|
}
|
|
232
|
+
.jasmine_html-reporter .jasmine-specs li .jasmine-spec-duration {
|
|
233
|
+
margin-left: 1em;
|
|
234
|
+
}
|
|
232
235
|
.jasmine_html-reporter .jasmine-description + .jasmine-suite {
|
|
233
236
|
margin-top: 0;
|
|
234
237
|
}
|