@serenity-js/playwright 3.32.0 → 3.32.2

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,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.32.2](https://github.com/serenity-js/serenity-js/compare/v3.32.1...v3.32.2) (2025-06-21)
7
+
8
+ **Note:** Version bump only for package @serenity-js/playwright
9
+
10
+
11
+
12
+
13
+
14
+ ## [3.32.1](https://github.com/serenity-js/serenity-js/compare/v3.32.0...v3.32.1) (2025-06-20)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **playwright-test:** added SerenityFixtures and SerenityWorkerFixtures to API docs ([887a7cf](https://github.com/serenity-js/serenity-js/commit/887a7cfb2d5505cd566cc26defdf6d1aaa145e40))
20
+
21
+
22
+
23
+
24
+
6
25
  # [3.32.0](https://github.com/serenity-js/serenity-js/compare/v3.31.17...v3.32.0) (2025-06-20)
7
26
 
8
27
 
@@ -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/SerenityOptions/).
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/SerenityOptions/).
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.0",
3
+ "version": "3.32.2",
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.0",
61
- "@serenity-js/web": "3.32.0",
60
+ "@serenity-js/core": "3.32.2",
61
+ "@serenity-js/web": "3.32.2",
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": "2b6464752f0a65ccf4b9f83ce1b309e14e9c6293"
78
+ "gitHead": "bbc73b54836964b5b0981484e761c209a3dd0682"
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/SerenityOptions/).
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.