@serenity-js/assertions 3.30.0 → 3.31.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 +8 -0
- package/README.md +2 -2
- package/package.json +6 -6
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.31.0](https://github.com/serenity-js/serenity-js/compare/v3.30.0...v3.31.0) (2024-12-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/assertions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.30.0](https://github.com/serenity-js/serenity-js/compare/v3.29.5...v3.30.0) (2024-11-19)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @serenity-js/assertions
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ of complex software systems faster, more collaborative and easier to scale.
|
|
|
12
12
|
- [Serenity/JS web testing tutorial](https://serenity-js.org/handbook/web-testing/your-first-web-scenario)
|
|
13
13
|
- [Serenity/JS Handbook](https://serenity-js.org/handbook) and [Getting Started guides](https://serenity-js.org/handbook/getting-started/)
|
|
14
14
|
- [API documentation](https://serenity-js.org/api/)
|
|
15
|
-
- [Serenity/JS Project Templates
|
|
15
|
+
- [Serenity/JS Project Templates](https://serenity-js.org/handbook/getting-started/project-templates/)
|
|
16
16
|
|
|
17
17
|
👋 Join the Serenity/JS Community!
|
|
18
18
|
- Meet other Serenity/JS developers and maintainers on the [Serenity/JS Community chat channel](https://matrix.to/#/#serenity-js:gitter.im),
|
|
@@ -22,7 +22,7 @@ of complex software systems faster, more collaborative and easier to scale.
|
|
|
22
22
|
|
|
23
23
|
## Serenity/JS Assertions
|
|
24
24
|
|
|
25
|
-
[`@serenity-js/assertions`](https://serenity-js.org/api/rest/) is an assertions library implementing the [Screenplay Pattern](https://serenity-js.org/handbook/
|
|
25
|
+
[`@serenity-js/assertions`](https://serenity-js.org/api/rest/) is an assertions library implementing the [Screenplay Pattern](https://serenity-js.org/handbook/design/screenplay-pattern/).
|
|
26
26
|
|
|
27
27
|
### Installation
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/assertions",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.31.0",
|
|
4
4
|
"description": "Serenity/JS universal assertion library supporting all types of functional tests, including both web and REST API scenarios",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -48,18 +48,18 @@
|
|
|
48
48
|
"node": "^18.12 || ^20 || ^22"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@serenity-js/core": "3.
|
|
51
|
+
"@serenity-js/core": "3.31.0",
|
|
52
52
|
"tiny-types": "1.23.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@integration/testing-tools": "3.0.0",
|
|
56
56
|
"@types/chai": "4.3.20",
|
|
57
|
-
"@types/mocha": "10.0.
|
|
57
|
+
"@types/mocha": "10.0.10",
|
|
58
58
|
"c8": "10.1.2",
|
|
59
|
-
"mocha": "
|
|
59
|
+
"mocha": "11.0.1",
|
|
60
60
|
"mocha-multi": "1.1.7",
|
|
61
61
|
"ts-node": "10.9.2",
|
|
62
|
-
"typescript": "5.
|
|
62
|
+
"typescript": "5.7.2"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "fb557dbbcd41994306877ae4f464e5d8b38772ff"
|
|
65
65
|
}
|