@serenity-js/playwright-test 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 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 playwright dependencies to v1.51.1 ([8d059c2](https://github.com/serenity-js/serenity-js/commit/8d059c2fb9ec5d6091b664a24a771205d96f2040))
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
@@ -10,9 +10,10 @@ of complex software systems faster, more collaborative and easier to scale.
10
10
 
11
11
  ⭐️ Get started with Serenity/JS!
12
12
  - [Serenity/JS web testing tutorial](https://serenity-js.org/handbook/web-testing/your-first-web-scenario)
13
- - [Serenity/JS Handbook](https://serenity-js.org/handbook) and [Getting Started guides](https://serenity-js.org/handbook/getting-started/)
13
+ - [Serenity/JS + Playwright Test deep dive](https://serenity-js.org/handbook/test-runners/playwright-test/)
14
+ - [Serenity/JS Handbook](https://serenity-js.org/handbook)
14
15
  - [API documentation](https://serenity-js.org/api/)
15
- - [Serenity/JS Project Templates](https://serenity-js.org/handbook/getting-started/project-templates/)
16
+ - [Serenity/JS Project Templates](https://serenity-js.org/handbook/project-templates/)
16
17
 
17
18
  👋 Join the Serenity/JS Community!
18
19
  - Meet other Serenity/JS developers and maintainers on the [Serenity/JS Community chat channel](https://matrix.to/#/#serenity-js:gitter.im),
@@ -25,6 +26,8 @@ of complex software systems faster, more collaborative and easier to scale.
25
26
  [`@serenity-js/playwright-test`](https://serenity-js.org/api/playwright-test/) module offers a Serenity/JS reporter
26
27
  and fixtures that integrate [Playwright Test](https://playwright.dev/docs/intro) with Serenity/JS Screenplay Pattern APIs.
27
28
 
29
+ Learn more about using [Serenity/JS with Playwright Test](https://serenity-js.org/handbook/test-runners/playwright-test/)
30
+
28
31
  ### Installation
29
32
 
30
33
  To install this module, use an existing [Playwright Test project](https://playwright.dev/docs/intro) or generate a new one by running:
@@ -39,8 +42,6 @@ Install the below Serenity/JS modules in your Playwright Test project directory:
39
42
  npm install --save-dev @serenity-js/assertions @serenity-js/console-reporter @serenity-js/core @serenity-js/serenity-bdd @serenity-js/web @serenity-js/playwright @serenity-js/playwright-test
40
43
  ```
41
44
 
42
- To learn more about Serenity/JS and how to use it on your project, follow the [Serenity/JS Getting Started guide for Playwright Test](https://serenity-js.org/handbook/getting-started/serenity-js-with-playwright-test/).
43
-
44
45
  ### Serenity/JS Playwright Fixtures
45
46
 
46
47
  To use Serenity/JS Screenplay Pattern APIs and benefit from the in-depth reporting capabilities,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/playwright-test",
3
- "version": "3.31.12",
3
+ "version": "3.31.13",
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,19 +59,19 @@
59
59
  "node": "^18.12 || ^20 || ^22"
60
60
  },
61
61
  "dependencies": {
62
- "@serenity-js/core": "3.31.12",
63
- "@serenity-js/playwright": "3.31.12",
64
- "@serenity-js/rest": "3.31.12",
65
- "@serenity-js/web": "3.31.12",
62
+ "@serenity-js/core": "3.31.13",
63
+ "@serenity-js/playwright": "3.31.13",
64
+ "@serenity-js/rest": "3.31.13",
65
+ "@serenity-js/web": "3.31.13",
66
66
  "deepmerge": "4.3.1",
67
67
  "tiny-types": "1.23.0"
68
68
  },
69
69
  "peerDependencies": {
70
- "@playwright/test": "~1.51.0"
70
+ "@playwright/test": "~1.51.1"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@integration/testing-tools": "3.0.0",
74
- "@playwright/test": "1.51.0",
74
+ "@playwright/test": "1.51.1",
75
75
  "@types/chai": "4.3.20",
76
76
  "@types/mocha": "10.0.10",
77
77
  "c8": "10.1.3",
@@ -80,5 +80,5 @@
80
80
  "ts-node": "10.9.2",
81
81
  "typescript": "5.8.2"
82
82
  },
83
- "gitHead": "196bdd12efc4a03dcb03755faa551989e6e39bfe"
83
+ "gitHead": "4f4a4d87b439afb43d81cd5a38ffaca43cec420d"
84
84
  }