@serenity-js/playwright-test 3.6.0 → 3.6.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.6.1](https://github.com/serenity-js/serenity-js/compare/v3.6.0...v3.6.1) (2023-07-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update playwright dependencies to ^1.36.0 ([8b60383](https://github.com/serenity-js/serenity-js/commit/8b6038338b35d04072b166a9b66f63fa24af8dc0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.6.0](https://github.com/serenity-js/serenity-js/compare/v3.5.0...v3.6.0) (2023-07-11)
7
18
 
8
19
 
package/README.md CHANGED
@@ -66,7 +66,7 @@ If you prefer, Serenity/JS also offers the more concise BDD-style `describe/it`
66
66
  import { describe, it, test } from '@serenity-js/playwright-test'
67
67
 
68
68
  test.use({
69
- headles: true,
69
+ headless: true,
70
70
  })
71
71
 
72
72
  describe('Serenity Screenplay with Playwright', () => {
@@ -97,7 +97,7 @@ import { Navigate, Page } from '@serenity-js/playwright' // import Sc
97
97
  import { Ensure, equals } from '@serenity-js/assertions' // import Screenplay Pattern assertion APIs
98
98
 
99
99
  test.use({
100
- headles: true,
100
+ headless: true,
101
101
  defaultActorName: 'Serena' // change default actor name
102
102
  })
103
103
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/playwright-test",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "Serenity/JS reporter and test APIs for Playwright Test",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -44,10 +44,10 @@
44
44
  "node": "^16.13 || ^18.12 || ^20"
45
45
  },
46
46
  "dependencies": {
47
- "@playwright/test": "^1.35.1",
48
- "@serenity-js/core": "3.6.0",
49
- "@serenity-js/playwright": "3.6.0",
50
- "@serenity-js/web": "3.6.0",
47
+ "@playwright/test": "^1.36.0",
48
+ "@serenity-js/core": "3.6.1",
49
+ "@serenity-js/playwright": "3.6.1",
50
+ "@serenity-js/web": "3.6.1",
51
51
  "deepmerge": "^4.3.1",
52
52
  "tiny-types": "^1.20.0"
53
53
  },
@@ -61,5 +61,5 @@
61
61
  "ts-node": "^10.9.1",
62
62
  "typescript": "^5.1.6"
63
63
  },
64
- "gitHead": "970ac224860693ab70e813e176b7532241503b14"
64
+ "gitHead": "3e7242840af96081c63d12b116e3f95f74b97160"
65
65
  }