@serenity-js/webdriverio-8 3.31.12 → 3.31.13
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 +11 -0
- package/README.md +3 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.13](https://github.com/serenity-js/serenity-js/compare/v3.31.12...v3.31.13) (2025-03-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency axios to v1.8.4 ([3f94d9a](https://github.com/serenity-js/serenity-js/commit/3f94d9a30305dabdd855f549a4518784b8377e0f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.31.12](https://github.com/serenity-js/serenity-js/compare/v3.31.11...v3.31.12) (2025-03-12)
|
|
7
18
|
|
|
8
19
|
|
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ Learn more about Serenity/JS modules:
|
|
|
43
43
|
- [`@serenity-js/console-reporter`](/api/console-reporter/)
|
|
44
44
|
- [`@serenity-js/serenity-bdd`](/api/serenity-bdd/)
|
|
45
45
|
|
|
46
|
-
If you prefer to review a reference implementation first, clone a [Serenity/JS Project Template](https://serenity-js.org/handbook/
|
|
46
|
+
If you prefer to review a reference implementation first, clone a [Serenity/JS Project Template](https://serenity-js.org/handbook/project-templates/) for your preferred test runner.
|
|
47
47
|
|
|
48
48
|
### 2. Configuring Serenity/JS
|
|
49
49
|
|
|
@@ -137,7 +137,7 @@ To produce Serenity BDD reports, your test suite must:
|
|
|
137
137
|
- produce intermediate Serenity BDD `.json` reports, by registering [`SerenityBDDReporter`](/api/serenity-bdd/class/SerenityBDDReporter/) as per the [configuration instructions](#configuring-serenityjs)
|
|
138
138
|
- invoke the Serenity BDD CLI when you want to produce the report, by calling `serenity-bdd run`
|
|
139
139
|
|
|
140
|
-
The pattern used by all the [Serenity/JS Project Templates](/handbook/
|
|
140
|
+
The pattern used by all the [Serenity/JS Project Templates](/handbook/project-templates/) relies
|
|
141
141
|
on using the following Node modules:
|
|
142
142
|
- [`npm-failsafe`](https://www.npmjs.com/package/npm-failsafe) to run the reporting process even if the test suite itself has failed (which is precisely when you need test reports the most...).
|
|
143
143
|
- [`rimraf`](https://www.npmjs.com/package/rimraf) as a convenience method to remove any test reports left over from the previous run
|
|
@@ -213,7 +213,7 @@ To view them, open the `index.html` file in your preferred web browser.
|
|
|
213
213
|
- [Serenity/JS WebdriverIO integration guide](https://serenity-js.org/handbook/test-runners/webdriverio/) - Integrate Serenity/JS with your WebdriverIO test suite, enable Serenity BDD reports, and start using the Screenplay Pattern
|
|
214
214
|
- [Serenity/JS Handbook](https://serenity-js.org/handbook/) - Write high-quality automated acceptance tests with Serenity/JS
|
|
215
215
|
- [Serenity/JS API documentation](https://serenity-js.org/api/) - Explore Serenity/JS modules and features
|
|
216
|
-
- [Serenity/JS Project Templates](https://serenity-js.org/handbook/
|
|
216
|
+
- [Serenity/JS Project Templates](https://serenity-js.org/handbook/project-templates/) - Kickstart your projects with best practices built right in
|
|
217
217
|
|
|
218
218
|
## 👋 Join the Serenity/JS Community
|
|
219
219
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/webdriverio-8",
|
|
3
|
-
"version": "3.31.
|
|
3
|
+
"version": "3.31.13",
|
|
4
4
|
"description": "Adapter that integrates @serenity-js/web with WebdriverIO 8, enabling Serenity/JS reporting and using the Screenplay Pattern to write web and mobile test scenarios",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"node": "^18.12 || ^20 || ^22"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@serenity-js/core": "3.31.
|
|
78
|
-
"@serenity-js/rest": "3.31.
|
|
79
|
-
"@serenity-js/web": "3.31.
|
|
77
|
+
"@serenity-js/core": "3.31.13",
|
|
78
|
+
"@serenity-js/rest": "3.31.13",
|
|
79
|
+
"@serenity-js/web": "3.31.13",
|
|
80
80
|
"@wdio/reporter": "8.43.0",
|
|
81
81
|
"deepmerge": "4.3.1",
|
|
82
82
|
"tiny-types": "1.23.0"
|
|
@@ -108,15 +108,15 @@
|
|
|
108
108
|
"@wdio/local-runner": "8.43.0",
|
|
109
109
|
"@wdio/spec-reporter": "8.43.0",
|
|
110
110
|
"@wdio/types": "8.41.0",
|
|
111
|
-
"axios": "1.8.
|
|
111
|
+
"axios": "1.8.4",
|
|
112
112
|
"c8": "10.1.3",
|
|
113
113
|
"cross-env": "7.0.3",
|
|
114
114
|
"mocha": "11.1.0",
|
|
115
115
|
"mocha-multi": "1.1.7",
|
|
116
116
|
"mocha-testdata": "1.2.0",
|
|
117
117
|
"puppeteer-core": "24.4.0",
|
|
118
|
-
"start-server-and-test": "2.0.
|
|
118
|
+
"start-server-and-test": "2.0.11",
|
|
119
119
|
"webdriverio": "8.43.0"
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "4f4a4d87b439afb43d81cd5a38ffaca43cec420d"
|
|
122
122
|
}
|