@serenity-js/web 3.3.0 → 3.3.1
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.3.1](https://github.com/serenity-js/serenity-js/compare/v3.3.0...v3.3.1) (2023-06-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/web
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.3.0](https://github.com/serenity-js/serenity-js/compare/v3.2.1...v3.3.0) (2023-06-01)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -387,7 +387,7 @@ export declare abstract class Page<Native_Element_Type = any> implements Optiona
|
|
|
387
387
|
*/
|
|
388
388
|
abstract title(): Promise<string>;
|
|
389
389
|
/**
|
|
390
|
-
* Retrieves the URL of the current top-level browsing context.
|
|
390
|
+
* Retrieves the [URL](https://nodejs.org/api/url.html) of the current top-level browsing context.
|
|
391
391
|
*/
|
|
392
392
|
abstract url(): Promise<URL>;
|
|
393
393
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/web",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"description": "Serenity/JS Screenplay Pattern APIs for the Web",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
"node": "^16.13 || ^18.12 || ^20"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@serenity-js/assertions": "3.3.
|
|
48
|
-
"@serenity-js/core": "3.3.
|
|
47
|
+
"@serenity-js/assertions": "3.3.1",
|
|
48
|
+
"@serenity-js/core": "3.3.1",
|
|
49
49
|
"tiny-types": "^1.19.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@integration/testing-tools": "3.0.0",
|
|
53
53
|
"@types/chai": "^4.3.5",
|
|
54
54
|
"@types/mocha": "^10.0.1",
|
|
55
|
-
"c8": "7.
|
|
55
|
+
"c8": "7.14.0",
|
|
56
56
|
"mocha": "^10.2.0",
|
|
57
57
|
"mocha-multi": "^1.1.7",
|
|
58
58
|
"ts-node": "^10.9.1",
|
|
59
59
|
"typescript": "^5.0.4"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "d036ce75c1eb131d3cde28b04e668dc24f959e2f"
|
|
62
62
|
}
|
|
@@ -470,7 +470,7 @@ export abstract class Page<Native_Element_Type = any> implements Optional, Switc
|
|
|
470
470
|
abstract title(): Promise<string>;
|
|
471
471
|
|
|
472
472
|
/**
|
|
473
|
-
* Retrieves the URL of the current top-level browsing context.
|
|
473
|
+
* Retrieves the [URL](https://nodejs.org/api/url.html) of the current top-level browsing context.
|
|
474
474
|
*/
|
|
475
475
|
abstract url(): Promise<URL>;
|
|
476
476
|
|