@serenity-js/core 3.18.0 → 3.19.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.19.0](https://github.com/serenity-js/serenity-js/compare/v3.18.1...v3.19.0) (2024-03-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.18.1](https://github.com/serenity-js/serenity-js/compare/v3.18.0...v3.18.1) (2024-02-23)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @serenity-js/core
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.18.0](https://github.com/serenity-js/serenity-js/compare/v3.17.0...v3.18.0) (2024-02-17)
|
|
7
23
|
|
|
8
24
|
|
|
@@ -7,7 +7,7 @@ import type { UsesAbilities } from './UsesAbilities';
|
|
|
7
7
|
*
|
|
8
8
|
* From the technical perspective, **abilities** act as **wrappers** around any **integration libraries** required
|
|
9
9
|
* to communicate with the external interfaces of system under test,
|
|
10
|
-
* such as {@apilink BrowseTheWeb|web browser drivers} or
|
|
10
|
+
* such as {@apilink BrowseTheWeb|web browser drivers} or an {@apilink CallAnApi|HTTP client}.
|
|
11
11
|
* They also enable [portability](/handbook/design/portable-test-code)
|
|
12
12
|
* of your test code across such integration libraries.
|
|
13
13
|
*
|
|
@@ -8,7 +8,7 @@ exports.Ability = void 0;
|
|
|
8
8
|
*
|
|
9
9
|
* From the technical perspective, **abilities** act as **wrappers** around any **integration libraries** required
|
|
10
10
|
* to communicate with the external interfaces of system under test,
|
|
11
|
-
* such as {@apilink BrowseTheWeb|web browser drivers} or
|
|
11
|
+
* such as {@apilink BrowseTheWeb|web browser drivers} or an {@apilink CallAnApi|HTTP client}.
|
|
12
12
|
* They also enable [portability](/handbook/design/portable-test-code)
|
|
13
13
|
* of your test code across such integration libraries.
|
|
14
14
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.19.0",
|
|
4
4
|
"description": "Serenity/JS Screenplay, reporting engine and core interfaces.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"validate-npm-package-name": "5.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@types/chai": "4.3.
|
|
49
|
+
"@types/chai": "4.3.12",
|
|
50
50
|
"@types/diff": "5.0.9",
|
|
51
51
|
"@types/filenamify": "2.0.2",
|
|
52
52
|
"@types/mocha": "10.0.6",
|
|
53
|
-
"@types/semver": "7.5.
|
|
53
|
+
"@types/semver": "7.5.8",
|
|
54
54
|
"@types/validate-npm-package-name": "4.0.2",
|
|
55
55
|
"assertion-error-formatter": "3.0.0",
|
|
56
56
|
"c8": "9.1.0",
|
|
57
|
-
"memfs": "4.7.
|
|
57
|
+
"memfs": "4.7.7",
|
|
58
58
|
"mocha": "10.3.0",
|
|
59
59
|
"mocha-multi": "1.1.7",
|
|
60
60
|
"ts-node": "10.9.2",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": "^16.13 || ^18.12 || ^20"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "6bc255b85d3e74d000b1584a64e460cc5adc1e23"
|
|
75
75
|
}
|
|
@@ -8,7 +8,7 @@ import type { UsesAbilities } from './UsesAbilities';
|
|
|
8
8
|
*
|
|
9
9
|
* From the technical perspective, **abilities** act as **wrappers** around any **integration libraries** required
|
|
10
10
|
* to communicate with the external interfaces of system under test,
|
|
11
|
-
* such as {@apilink BrowseTheWeb|web browser drivers} or
|
|
11
|
+
* such as {@apilink BrowseTheWeb|web browser drivers} or an {@apilink CallAnApi|HTTP client}.
|
|
12
12
|
* They also enable [portability](/handbook/design/portable-test-code)
|
|
13
13
|
* of your test code across such integration libraries.
|
|
14
14
|
*
|