@serenity-js/playwright 3.32.0 → 3.32.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,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.32.1](https://github.com/serenity-js/serenity-js/compare/v3.32.0...v3.32.1) (2025-06-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **playwright-test:** added SerenityFixtures and SerenityWorkerFixtures to API docs ([887a7cf](https://github.com/serenity-js/serenity-js/commit/887a7cfb2d5505cd566cc26defdf6d1aaa145e40))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.32.0](https://github.com/serenity-js/serenity-js/compare/v3.31.17...v3.32.0) (2025-06-20)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -47,7 +47,7 @@ import type { ExtraBrowserContextOptions } from '../../ExtraBrowserContextOption
|
|
|
47
47
|
* Note that [Serenity/JS Playwright Test module](https://serenity-js.org/api/playwright-test/)
|
|
48
48
|
* automatically configures all your [actors](https://serenity-js.org/api/core/class/Actor/)
|
|
49
49
|
* with an ability to [`BrowseTheWebWithPlaywright`](https://serenity-js.org/api/playwright/class/BrowseTheWebWithPlaywright/),
|
|
50
|
-
* so you don't need to do it by hand unless you want to override the [default configuration](https://serenity-js.org/api/playwright-test/interface/
|
|
50
|
+
* so you don't need to do it by hand unless you want to override the [default configuration](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/).
|
|
51
51
|
*
|
|
52
52
|
* The example below demonstrates how to use the [`BrowseTheWebWithPlaywright.usingPage`](https://serenity-js.org/api/playwright/class/BrowseTheWebWithPlaywright/#usingPage) API and
|
|
53
53
|
* override the default [cast](https://serenity-js.org/api/core/class/Cast/) of actors.
|
|
@@ -82,7 +82,7 @@ const models_1 = require("../models");
|
|
|
82
82
|
* Note that [Serenity/JS Playwright Test module](https://serenity-js.org/api/playwright-test/)
|
|
83
83
|
* automatically configures all your [actors](https://serenity-js.org/api/core/class/Actor/)
|
|
84
84
|
* with an ability to [`BrowseTheWebWithPlaywright`](https://serenity-js.org/api/playwright/class/BrowseTheWebWithPlaywright/),
|
|
85
|
-
* so you don't need to do it by hand unless you want to override the [default configuration](https://serenity-js.org/api/playwright-test/interface/
|
|
85
|
+
* so you don't need to do it by hand unless you want to override the [default configuration](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/).
|
|
86
86
|
*
|
|
87
87
|
* The example below demonstrates how to use the [`BrowseTheWebWithPlaywright.usingPage`](https://serenity-js.org/api/playwright/class/BrowseTheWebWithPlaywright/#usingPage) API and
|
|
88
88
|
* override the default [cast](https://serenity-js.org/api/core/class/Cast/) of actors.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/playwright",
|
|
3
|
-
"version": "3.32.
|
|
3
|
+
"version": "3.32.1",
|
|
4
4
|
"description": "Adapter that integrates @serenity-js/web with Playwright, enabling Serenity/JS reporting and using the Screenplay Pattern to write component and end-to-end test scenarios",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"node": "^18.12 || ^20 || ^22"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@serenity-js/core": "3.32.
|
|
61
|
-
"@serenity-js/web": "3.32.
|
|
60
|
+
"@serenity-js/core": "3.32.1",
|
|
61
|
+
"@serenity-js/web": "3.32.1",
|
|
62
62
|
"tiny-types": "1.23.0"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"ts-node": "10.9.2",
|
|
76
76
|
"typescript": "5.8.3"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "f1f288c9a75d28270dfe4ba16ca4f367a4dbba22"
|
|
79
79
|
}
|
|
@@ -53,7 +53,7 @@ import {
|
|
|
53
53
|
* Note that [Serenity/JS Playwright Test module](https://serenity-js.org/api/playwright-test/)
|
|
54
54
|
* automatically configures all your [actors](https://serenity-js.org/api/core/class/Actor/)
|
|
55
55
|
* with an ability to [`BrowseTheWebWithPlaywright`](https://serenity-js.org/api/playwright/class/BrowseTheWebWithPlaywright/),
|
|
56
|
-
* so you don't need to do it by hand unless you want to override the [default configuration](https://serenity-js.org/api/playwright-test/interface/
|
|
56
|
+
* so you don't need to do it by hand unless you want to override the [default configuration](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/).
|
|
57
57
|
*
|
|
58
58
|
* The example below demonstrates how to use the [`BrowseTheWebWithPlaywright.usingPage`](https://serenity-js.org/api/playwright/class/BrowseTheWebWithPlaywright/#usingPage) API and
|
|
59
59
|
* override the default [cast](https://serenity-js.org/api/core/class/Cast/) of actors.
|