@serenity-js/playwright-test 3.31.8 → 3.31.10
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 +19 -0
- package/lib/api/SerenityOptions.d.ts +3 -3
- package/package.json +7 -7
- package/src/api/SerenityOptions.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.10](https://github.com/serenity-js/serenity-js/compare/v3.31.9...v3.31.10) (2025-03-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency typescript to v5.8.2 ([228c7fd](https://github.com/serenity-js/serenity-js/commit/228c7fddee3afcbf5015b147eeb816494ef6bd08))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.31.9](https://github.com/serenity-js/serenity-js/compare/v3.31.8...v3.31.9) (2025-02-20)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @serenity-js/playwright-test
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [3.31.8](https://github.com/serenity-js/serenity-js/compare/v3.31.7...v3.31.8) (2025-02-04)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -79,7 +79,7 @@ import type { PlaywrightOptions } from '@serenity-js/playwright';
|
|
|
79
79
|
*/
|
|
80
80
|
export interface SerenityOptions {
|
|
81
81
|
/**
|
|
82
|
-
* Configures the [`Cast`](https://serenity-js.org/api/core/class/Cast/) of [`
|
|
82
|
+
* Configures the [`Cast`](https://serenity-js.org/api/core/class/Cast/) of [`actors`](https://serenity-js.org/api/core/class/SerenityConfig/#actors) to be used when injecting an [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actor)
|
|
83
83
|
* or invoking [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) in a [test scenario](https://serenity-js.org/api/playwright-test/function/it/).
|
|
84
84
|
*
|
|
85
85
|
* :::info Did you know?
|
|
@@ -152,7 +152,7 @@ export interface SerenityOptions {
|
|
|
152
152
|
*/
|
|
153
153
|
defaultActorName: string;
|
|
154
154
|
/**
|
|
155
|
-
* Configures the [
|
|
155
|
+
* Configures the [stage crew members](https://serenity-js.org/api/core/class/SerenityConfig/#crew)
|
|
156
156
|
* to be instantiated in Playwright Test worker processes.
|
|
157
157
|
*
|
|
158
158
|
* :::info Did you know?
|
|
@@ -184,7 +184,7 @@ export interface SerenityOptions {
|
|
|
184
184
|
*/
|
|
185
185
|
crew: Array<ClassDescription | StageCrewMember | StageCrewMemberBuilder>;
|
|
186
186
|
/**
|
|
187
|
-
* Sets the [`
|
|
187
|
+
* Sets the [`cueTimeout`](https://serenity-js.org/api/core/class/SerenityConfig/#cueTimeout) to a given [duration](https://serenity-js.org/api/core/class/Duration/) or a numeric value in milliseconds.
|
|
188
188
|
* Defaults to **5 seconds**.
|
|
189
189
|
*
|
|
190
190
|
* #### Learn more
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/playwright-test",
|
|
3
|
-
"version": "3.31.
|
|
3
|
+
"version": "3.31.10",
|
|
4
4
|
"description": "Serenity/JS test runner adapter for Playwright Test, combining Playwright's developer experience with the advanced reporting and automation capabilities of Serenity/JS",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"node": "^18.12 || ^20 || ^22"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@serenity-js/core": "3.31.
|
|
63
|
-
"@serenity-js/playwright": "3.31.
|
|
64
|
-
"@serenity-js/rest": "3.31.
|
|
65
|
-
"@serenity-js/web": "3.31.
|
|
62
|
+
"@serenity-js/core": "3.31.10",
|
|
63
|
+
"@serenity-js/playwright": "3.31.10",
|
|
64
|
+
"@serenity-js/rest": "3.31.10",
|
|
65
|
+
"@serenity-js/web": "3.31.10",
|
|
66
66
|
"deepmerge": "4.3.1",
|
|
67
67
|
"tiny-types": "1.23.0"
|
|
68
68
|
},
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"mocha": "11.1.0",
|
|
79
79
|
"mocha-multi": "1.1.7",
|
|
80
80
|
"ts-node": "10.9.2",
|
|
81
|
-
"typescript": "5.
|
|
81
|
+
"typescript": "5.8.2"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "78dc222056887bbfbd5c4a560c757eb1bb496871"
|
|
84
84
|
}
|
|
@@ -81,7 +81,7 @@ import type { PlaywrightOptions } from '@serenity-js/playwright';
|
|
|
81
81
|
export interface SerenityOptions {
|
|
82
82
|
|
|
83
83
|
/**
|
|
84
|
-
* Configures the [`Cast`](https://serenity-js.org/api/core/class/Cast/) of [`
|
|
84
|
+
* Configures the [`Cast`](https://serenity-js.org/api/core/class/Cast/) of [`actors`](https://serenity-js.org/api/core/class/SerenityConfig/#actors) to be used when injecting an [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actor)
|
|
85
85
|
* or invoking [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) in a [test scenario](https://serenity-js.org/api/playwright-test/function/it/).
|
|
86
86
|
*
|
|
87
87
|
* :::info Did you know?
|
|
@@ -156,7 +156,7 @@ export interface SerenityOptions {
|
|
|
156
156
|
defaultActorName: string;
|
|
157
157
|
|
|
158
158
|
/**
|
|
159
|
-
* Configures the [
|
|
159
|
+
* Configures the [stage crew members](https://serenity-js.org/api/core/class/SerenityConfig/#crew)
|
|
160
160
|
* to be instantiated in Playwright Test worker processes.
|
|
161
161
|
*
|
|
162
162
|
* :::info Did you know?
|
|
@@ -189,7 +189,7 @@ export interface SerenityOptions {
|
|
|
189
189
|
crew: Array<ClassDescription | StageCrewMember | StageCrewMemberBuilder>;
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
|
-
* Sets the [`
|
|
192
|
+
* Sets the [`cueTimeout`](https://serenity-js.org/api/core/class/SerenityConfig/#cueTimeout) to a given [duration](https://serenity-js.org/api/core/class/Duration/) or a numeric value in milliseconds.
|
|
193
193
|
* Defaults to **5 seconds**.
|
|
194
194
|
*
|
|
195
195
|
* #### Learn more
|